欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

VBA学习记录

程序员文章站 2022-05-16 09:28:42
...
'简易实现单列查找定位
Private Sub CommandButton1_Click()
    Dim arr1
    cx = TextBox1.Value
    arr1 = Range("C1:C10000")
    For i = 1 To UBound(arr1)
        If arr1(i, 1) = cx Then
            n = i
        End If
    Next
    Range("c" & n).Select
End Sub
相关标签: VBA