是否可以在Google表格中隐藏行号?


11

当查看以数字1开头的编号列表时,行号可能会造成混淆。(假设其中第1行作为列标题标签,item 1将在第2行,item 2第3行,依此类推。)

像大多数电子表格程序一样,有没有办法关闭行和列标题?

万一我没有道理,下面的图片应该可以解决问题:

屏幕截图

Answers:



1

转到“文件”>“发布到Web”,然后在“获取到已发布数据的链接”下,选择“网页”,然后选择要发布的工作表。然后选择您要显示的单元格。然后复制生成的链接。

您可能需要使用共享选项(即,具有链接的任何人都可以编辑)。


这是一个很好的建议.....但是可能需要更多的事实。您可以显示截图吗?
Jacob Jan Tuinstra 2013年

1

是的,谷歌没有实现这一点太糟糕了。我在这里为此目的放了一些JavaScript书签。单击一次将插入CSS样式以隐藏标题,再次单击将删除CSS并再次显示它们。

javascript:(function(){var hidecss = "body { margin-left: -45px; margin-top: -47px; } div.grid-table-container { width: 100% !important; } div.native-scrollbar.native-scrollbar-ltr.native-scrollbar-y { left: initial !important; right: 0px; } div.goog-inline-block.grid4-inner-container { width: 100% !important; }"; if (document.querySelector('#hidecss')===null){ var hidescript = document.createElement('style'); hidescript.type = 'text/css'; hidescript.id = 'hidecss'; hidescript.innerHTML = hidecss; document.head.appendChild(hidescript); } else document.getElementById('hidecss').remove();})();

可能不得不调整到其他屏幕尺寸,但这就是要点!

编辑格式化的JS:

var hidecss = "body { margin-left: -45px; margin-top: -47px; } div.grid-table-container { width: 100% !important; } div.native-scrollbar.native-scrollbar-ltr.native-scrollbar-y { left: initial !important; right: 0px; } div.goog-inline-block.grid4-inner-container { width: 100% !important; }";
if (document.querySelector('#hidecss')===null){
    var hidescript = document.createElement('style');
    hidescript.type = 'text/css';
    hidescript.id = 'hidecss';
    hidescript.innerHTML = hidecss;
    document.head.appendChild(hidescript);
}
else document.getElementById('hidecss').remove();

这是一个丑陋的黑客,因为Google不能使Web应用程序像这样的用户修改很好地发挥作用,因此它只是可视化的(尝试单击单元格会将您带到不同的单元格,并且突出显示被弄乱了)。我最终不使用它


您能否重新格式化代码,使其成为代码(每行前加4个空格),而不是使用反引号和blockquotes。我自己做,但是我无法确定换行符应该去的地方。
克里斯·

我刚刚发布了小书签代码...如果想要查看链接,格式为CSS和JS的链接
Louis Maddox 2014年

1

在Google表格电子表格视图上是不可能的。

一种选择是发布到网络上。值得注意的是headers参数可以用来显示/隐藏headers。使用headers=true显示和headers=false隐藏,如果省略了头是隐藏的。

例:

(唯一的文件ID替换为...

https://docs.google.com/spreadsheets/d/e/.../pubhtml?headers=false

参考文献

来自Google文档编辑器官方帮助论坛


1

我在数字前添加了一个空白列,并将数字设为粗体,以便将眼睛吸引到那里,而不是默认的Google工作表编号。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.