EXCEL表格中如何让sheet1中单元格A1,A2,A3,依次引用sheet2到sheet10各工作表的名称

2025-02-22 15:55:32
推荐回答(3个)
回答1:

A1右键,超链接

确定就可以了

回答2:

这个要用到宏表函数,并配合着定义名称。

见实例文件吧。注意,需要启用宏

回答3:

使用VBA编写以下程序
sub shtname()
dim sht as worksheet, i as integer
i=1
for each sht in worksheets
cell(i,"A")=sht.name
i=i+1
next sht
end sub