Hi!
I have a table and searching for a text.
The value of ActiveCell.Offset(0, 3) is “1-ÅRIGT ÅTAGANDE”
This text can change time to time, some time has upper case, and sometime has lower case.
I want to match no matter upper case or lower case (without sensitivity).
Please help!
Sub test()
If ActiveCell.Offset(0, 3).Value = "1-årigt åtagande" Then
'some codes
Else
'som codes
End Sub
I have a table and searching for a text.
The value of ActiveCell.Offset(0, 3) is “1-ÅRIGT ÅTAGANDE”
This text can change time to time, some time has upper case, and sometime has lower case.
I want to match no matter upper case or lower case (without sensitivity).
Please help!
Sub test()
If ActiveCell.Offset(0, 3).Value = "1-årigt åtagande" Then
'some codes
Else
'som codes
End Sub