Hi,
I have a workbook where they will be either a YES or NO Value in columns E, F or G. There will mostly be all NO values, but if there is a YES, i would like a message box to pop up and say "There is a negative fund, investment, or source!".
This is what i'm using now, but the message box is popping up even when there are no YES values present. Any help is much appreciated! I am kind of new to this and have been self taught so far. Thank you!
If ("E4:G3000") = "No" Then
Exit Sub
Else
MsgBox "There is a negative fund, investment, or source!", vbOKOnly
I have a workbook where they will be either a YES or NO Value in columns E, F or G. There will mostly be all NO values, but if there is a YES, i would like a message box to pop up and say "There is a negative fund, investment, or source!".
This is what i'm using now, but the message box is popping up even when there are no YES values present. Any help is much appreciated! I am kind of new to this and have been self taught so far. Thank you!
If ("E4:G3000") = "No" Then
Exit Sub
Else
MsgBox "There is a negative fund, investment, or source!", vbOKOnly