VBA Rewriting OR's

Stephen_IV

Well-known Member
Joined
Mar 17, 2003
Messages
1,174
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
I am not great at VBA but I am looking for another way to write many OR's . Can someone please guide me. Thanks in advance!

Code:
if cells(i,1)=10 or cells(i,1)=21 or cells(i,1)=37 or cells(i,1)=39 or cells(i,1)=47 or cells(i,1)=52 or cells(i,1)=63 or cells(i,1)=64 or cells(i,1)=67 or cells(i,1)=68 then
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Perhaps Select Case?
Code:
Select Case Cells(i,1).Value
    Case 10, 21, 37, 39, 47, 52, 63, 64, 67, 68
        ' then do something

    Case Else
        ' or do something else
End Select
 
Upvote 0
Thanks Norie. Yeah that worked!! Sometimes it is right in front of you! Thank you again!
 
Upvote 0

Forum statistics

Threads
1,216,113
Messages
6,128,905
Members
449,478
Latest member
Davenil

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