Using Or statements

kckay

Board Regular
Joined
Nov 8, 2010
Messages
134
How should I write this code?

Code:
.
.
        Heading_Count = 2
        Row_Count = 5
        Source_Count = 28
        
        For n = 1 To Number_Of_Rows
            If Worksheets("System Overview").Range("C" & Source_Count).Value = "NP" Or _
                "NN" Or _
                "SI" Or _
                "RS" Or _
                "RC" Or _
                "CS" Or _
                "IN" Or _
                "WL" Or _
                "IG" Or _
                "SP" Then
'--------------------------------------------------
'WSF Number
'--------------------------------------------------
.
.
.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
To use IF in that way the syntax would be
Code:
If Worksheets("System Overview").Range("C" & Source_Count).Value = "NP" Or _
       Worksheets("System Overview").Range("C" & Source_Count).Value = "NN" Or _
       Worksheets("System Overview").Range("C" & Source_Count).Value = "SI" Or _
       Worksheets("System Overview").Range("C" & Source_Count).Value = "RS" Then
    Rem do stuff
End If

an easier syntax would be
Code:
Select Case Worksheets("System Overview").Range("C" & Source_Count).Value
    Case "NP", "NN", "SI", "RS"
       Rem do stuff
End Select
 
Upvote 0

Forum statistics

Threads
1,224,583
Messages
6,179,671
Members
452,937
Latest member
Bhg1984

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