Hi guys
In a macro I'm working on, I wish to run a procedure if the first word in a cell in that column matches a certain word.
For example the text in a cell in the column reads
"Experiment 45 8"
Where the numbers vary with each one.
Currently I have written this:
However this does not work, so what should I change?
Thanks
In a macro I'm working on, I wish to run a procedure if the first word in a cell in that column matches a certain word.
For example the text in a cell in the column reads
"Experiment 45 8"
Where the numbers vary with each one.
Currently I have written this:
Code:
If Cell(a, 1).Value = "EXPERIMENT" & "*" Then ...
However this does not work, so what should I change?
Thanks