Sub ErrorCodeForMyTimeSheet()
Worksheets("DataValues").Range("A2:A20")
End Sub
我想循环遍历值并检查名称是否存在工作表。
如何通过A2到A20的值循环?
答案 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