不寻常的 Excel 工作表 - 完全空白,全部禁用

不寻常的 Excel 工作表 - 完全空白,全部禁用

有人知道 Excel 中这个奇怪的工作表是什么吗?它包含一个图表,但没有其他内容,而且功能区中的几乎所有控件都被禁用了。请注意,这不仅仅是没有边框/灰色填充的空白表,这里根本没有单元格的概念。

如果我想做这样的事情,我该如何实现?

奇怪的 Excel 表

答案1

右键单击工作表选项卡,然后单击“插入”、“图表”、“确定”,即可显示该类型的工作表。请注意,在 VBA 中,这是Sheets集合的一部分,但不是集合的一部分 Worksheets

'this prints the Chart sheet's name along with all the worksheets' names
for i = 1 to Sheets.Count
    debug.print Sheets(i).Name
next i

'this only prints the worksheets' names and skips over the Chart sheet
for i = 1 to Worksheets.Count
    debug.print Worksheets(i).Name
next i

相关内容