其他分享
首页 > 其他分享> > 字段的任意查找

字段的任意查找

作者:互联网

内容:根据需要查找的关键词,在固定的表格中逐行查找。

Sub 任意查找()
    Dim i As Integer
    Dim strFind As String
    Dim LastRow As Long
    LastRow = ActiveSheet.UsedRange.Rows.Count   '获得使用的行数
    Range("B1").Select
    strFind = "钻头2"
      If Trim(strFind) <> "" Then
            If Cells.Find(What:=strFind, After:=ActiveCell, LookIn:=xlFormulas, _
                             LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                             MatchCase:=False, MatchByte:=False, SearchFormat:=False) Is Nothing Then
             Debug.Print "未找到相关记录!"
'               MsgBox "未找到相关记录!", 0, "提示:"
            Else
               For i = ActiveCell.Row To LastRow
                    Debug.Print i & "-"
                    Cells.FindNext(After:=ActiveCell).Activate
               Next
            End If
       Else
            MsgBox "请输入要查找的数据!", 0, "提示:"
       End If
End Sub

作者:LiW

小游园 发布了142 篇原创文章 · 获赞 213 · 访问量 1万+ 私信 关注

标签:Dim,LastRow,End,字段,查找,ActiveCell,strFind,任意
来源: https://blog.csdn.net/s0302017/article/details/104460275