如何使用VBA从隐藏工作表中获取值

时间:2017-08-03 19:49:27

标签: vba excel-vba excel

Sub ErrorCodeForMyTimeSheet()
    Worksheets("DataValues").Range("A2:A20")
End Sub

我想循环遍历值并检查名称是否存在工作表。

如何通过A2到A20的值循环?

1 个答案:

答案 0 :(得分:0)

根据您的评论,您想要遍历您的范围,然后尝试以下操作。 这只是VBA中的for循环

 sub testcode()
        dim i as double
    dim yournametofind as string
        for i = 2 to 20
        yournametofind  = Worksheets("DataValues").Range("A" & i).value
    if yournametofind = yournametofind then

    'do your things
    else

    do your things
    end if
        next i


        end sub