Hello,
I have data set up on 2 sheets (each cell similar to 12345MD, and right now I am using an If statement like this:
If Cell1 = Cell2 Then
Do stuff
This requires the text in each cell to be an EXACT match.
I would like to be able to have the condition return true regardless of case so that:
12345MD = 12345md TRUE
12345MD = 12345mD TRUE
How could I make this happen?
I have data set up on 2 sheets (each cell similar to 12345MD, and right now I am using an If statement like this:
If Cell1 = Cell2 Then
Do stuff
This requires the text in each cell to be an EXACT match.
I would like to be able to have the condition return true regardless of case so that:
12345MD = 12345md TRUE
12345MD = 12345mD TRUE
How could I make this happen?