Hi All,
I would like to write some VBA to check a column of 2000 rows for the number 3.
If 3 is found then I would like a msg box to appear telling the user what row it is on and selecting that row.
If more than one instance of 3 is found then I would like this to repeat or loop until all corrections have been made.
So far all I have is:
Any help or alternative soloutions much appreciated
Thanks
Paul
I would like to write some VBA to check a column of 2000 rows for the number 3.
If 3 is found then I would like a msg box to appear telling the user what row it is on and selecting that row.
If more than one instance of 3 is found then I would like this to repeat or loop until all corrections have been made.
So far all I have is:
Code:
If Range("AO9:AO2031") = 3 Then
MsgBox " Please ensure you have no incomplete rows"
Else
Any help or alternative soloutions much appreciated
Thanks
Paul