I need somehow to search column B for the word Budget. If the word budget is found, display a prompt that has an OK button, and once selected, macro continues.
Just looking at formulas, before creating code, I tried:
Cells in column B might have a value such as Budget May 2012.
I've also used the Find command, (=find), but this is case sensitive. Is there anyway to do this without it being case sensitive?
Thanks!
Just looking at formulas, before creating code, I tried:
Code:
=SUM(COUNTIF(B:B,"Budget"))
Cells in column B might have a value such as Budget May 2012.
I've also used the Find command, (=find), but this is case sensitive. Is there anyway to do this without it being case sensitive?
Thanks!