Logic not working as expected

wpryan

Well-known Member
Joined
May 26, 2009
Messages
534
Office Version
  1. 365
Platform
  1. Windows
Hi All, I am using the following code, but unfortunately it is not giving the result I want:

Code:
Dim model As String, Purpose As String, Replaced As String
model = Sheets("General Data").Range("B9").Value
Purpose = Sheets("General Data").Range("D5").Value
Replaced = Sheets("General Data").Range("D6").Value

If model = "Z8" And (Purpose = "Basic Service" Or Purpose = "Full Service") _
        And (Replaced <> "Other" Or Replaced <> "None" Or Replaced <> "Laser Cavity") Then
        Z8_PartsRep
        GoTo 1

ElseIf (etc. etc. etc.)
End If
What's going on is that if Replaced is set to "None", "Other" or "Laser Cavity", the module "Z8_PartsRep" module is called. It does not go to the ElseIf condition, which is what I expect it to do.

How did I get the logic wrong?
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Replace the Or with And for "Replaced"
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,490
Members
448,967
Latest member
visheshkotha

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