想要在公式位置设置值

时间:2014-03-19 01:04:11

标签: excel formula

如果我有一个名为" top_row"哪个指向细胞" A1:A90"有没有办法阅读细胞的定义? 这样我就可以拥有一张配置值的工作表 [一级方程式] [VALUE1] [formula2] [值]

会有不同的值集,并非所有值都具有相同的条目,因此希望按名称列出。

1 个答案:

答案 0 :(得分:1)

您可以遍历当前工作簿中的所有可用命名范围并使用值:

试试这个:

Range("A1") = "Name"
Range("B1") = "Reference"

With Range("A1:B1")
.Font.Bold = True
.Font.Underline = True
End With
intCount = 2

For Each namedRange In ThisWorkbook.Names

Range("A" & intCount).Value = namedRange.Name
Range("B" & intCount).Value = namedRange

intCount = intCount + 1
Next