Use OR Within IF Statement Condition in VBA

lleifsen

New Member
Joined
Jan 14, 2011
Messages
39
Hello,

I am trying to figure out the Syntax for an If Statement.

Code:
"If LastCell = "$T$10" Or "$T$11" Then
ActiveWindow.SelectedSheets.Delete
End If"

It works when I have this:
If LastCell = "$T$10" Then
ActiveWindow.SelectedSheets.Delete
End If"

But, when I add the "Or $T$11" I get a Type Mismatch Error.


If anyone can help it would be greatly appreciated.


Lee
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
When you are using Or, And operators, you must state the condition everytime which is a pain compared to other languages such as C (I believe)

So,
Code:
If A = 1 Or A = 2 Then.
 
Upvote 0
Without knowing more about the code...I would say...

Code:
If LastCell = "$T$10" Or LastCell  = "$T$11" Then
 
Upvote 0
I figured it out!
I added another LastCell

If LastCell = "$T$10" Or LastCell = "$T$11" Then
ActiveWindow.SelectedSheets.Delete
End If

Thanks everyone
 
Upvote 0

Forum statistics

Threads
1,224,618
Messages
6,179,916
Members
452,949
Latest member
beartooth91

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