Using multiple checks in single IF statement

Prevost

Board Regular
Joined
Jan 23, 2014
Messages
198
Hi There,
Is there a way in VBA to use an IF statement and have multiple checks? So for example if I wanted to check a cell value for one of several string segments, could I do that with one if statement? I could do multiple ELSEIF statements or multiple CASE statements, but I thought it would be easier to check all in one line and then only have to insert the resulting code once.
Thanks!

Code:
Sub MultipleIFs()
Dim A As String, B As String
A = "apple"
B = "banana"
    If InStr(1, ActiveCell.Value, A) Or InStr(1, ActiveCell.Value, B) Then
        'carry out some code
    Else
    End If
End Sub
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
IF on its own will home to the first TRUE value

so checking for one TRUE statement should work
 
Upvote 0
Thanks Moley. I didn't check my code...it actually works. I don't know why I thought that this wouldn't work.....I sometimes forget how code works too :)
Thanks!
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,854
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top