Shortening my code

Needsomehelp10

New Member
Joined
Sep 5, 2017
Messages
18
Hey guys,

Is there a way to shorten the following code so that I do not have to write or Range ("A1") = every time I wanna add an or statement? Thanks for the help in advance.

ElseIf Range("A1") = "Location 1" Or Range("A1") = "Location 2" Or Range("A1") = "Location 4" Or Range("A1") = "Location 5" Or Range("A1") = "Location 6" Or Range("A1") = "Location 7" Then do blah blah
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Just going to put this out there.

Shorter does NOT mean Better.
Don't change code 'just to make it shorter'


Anyway..

You can use a Select Case structure..

Code:
Select Case Range("A1").Value
    Case "Location 1", "Location 2", "Location 4", "etc."
        blah blah
End Select
 
Upvote 0
Shorter does NOT mean Better.
Don't change code 'just to make it shorter'

Anyway..

You can use a Select Case structure..
Code:
Select Case Range("A1").Value
    Case "Location 1", "Location 2", "Location 4", "etc."
        blah blah
End Select
Look at that, you made it shorter... and better. :devilish:
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,614
Members
449,091
Latest member
gaurav_7829

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