请教,在Excel2003 VBA中,如何查找某一单元格中指定的字符串?谢谢。

2024-11-07 02:41:12
推荐回答(3个)
回答(1):

Cells.Find(What:=Cells(1, 1), After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, MatchByte:=False, SearchFormat:=False).Activate

Cells(1, 1)代表单元格A1,你可以替换成必要指定的单元格。

回答(2):

InStr(单元格,指定字符) =0找不到,反之找得到

回答(3):

查找所有应用区域中包含“Hello”字符串的
Sub test1()
Dim v As String
Dim r As Range
v = "Hello"
For Each r In ActiveSheet.UsedRange
If InStr(1, r, v) <> 0 Then
MsgBox r.Address
End If
Next
End Sub