添加注释方法错误

时间:2018-11-12 09:03:59

标签: excel vba

.AddComment函数遇到问题

    Worksheets("Config").Range("I2:ZZ2").offset(index, 0).AddComment Worksheets("Library").Range("B2:ZZ2").offset(offset, 0).Value

我在做什么错?我正在循环播放,因此此处无法使用“ With”语句。

1 个答案:

答案 0 :(得分:0)

您还需要遍历每一列:

for i = 9 to 702
    Worksheets("Config").Cells(2 + index, i).AddComment Worksheets("Library").Cells(2 + index, i).Value
next i