Đình Phán
Thành viên thường trực
- Tham gia
- 23/11/10
- Bài viết
- 232
- Được thích
- 68
- Giới tính
- Nam
- Nghề nghiệp
- kt
Chào các anh, chị.
Em mới tập tành phương thức Find nhưng loay hoay quá.
Em có 1 danh sách các từ khóa cần tìm (có thể mở rộng thêm). Em muốn nạp các giá trị này vào 1 mảng (do tìm kiếm là tiếng Việt có dấu), hiện em có tìm 1 đoạn mã nhưng sửa không được. Nhờ các anh, chị giúp đỡ.
Em cảm ơn!
Em mới tập tành phương thức Find nhưng loay hoay quá.
Em có 1 danh sách các từ khóa cần tìm (có thể mở rộng thêm). Em muốn nạp các giá trị này vào 1 mảng (do tìm kiếm là tiếng Việt có dấu), hiện em có tìm 1 đoạn mã nhưng sửa không được. Nhờ các anh, chị giúp đỡ.
Em cảm ơn!
Mã:
Sub Find_Highlight_Comments()
Dim WS As Worksheet
Dim Match As Range
Dim Comment()
Dim Keyword()
Set WS = ActiveWorkbook.Worksheets("Sheet1")
Comment = ThisWorkbook.Sheets("Sheet1").Range("A1:A5").Value
ReDim Keyword(1 To UBound(Comment))
'Comment(0) = "insoluble residue"
'Comment(1) = "non-gaussian"
'Comment(2) = "empty source well"
'Comment(3) = "source vial not received"
'Comment(4) = "foreign object"
'Comment(5) = "lacks nitrogen"
'Comment(6) = "lacks molecular"
'Comment(7) = "could not be assayed"
'Comment(8) = "not pass through Millipore filter"
For i = 1 To UBound(Comment)
Set Match = WS.Range("A1:A100").Find(What:=Keyword(i), LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False)
If Not Match Is Nothing Then
FirstAddress = Match.Address
Do
sPos = InStr(1, Match.Value, Keyword(i))
sLen = Len(Keyword(i))
Match.Characters(Start:=sPos, Length:=sLen).Font.Color = RGB(255, 0, 0)
Match.Interior.Color = RGB(255, 255, 0)
Set Match = WS.Range("A1:A100").FindNext(Match)
Loop While Not Match Is Nothing And Match.Address <> FirstAddress
End If
Next
End Sub