This example: MsgBox UCase(ActiveCell.Value) Like "*ASIA*"
is using the asterisk wildcard...which indicates zero or more characters.
The code displays a TRUE/FALSE value in a message box, based on this statement:
The current cell's value, converted to upper case, contains the word "ASIA" anyplace in the value.
Does that help?