Input box not working

TheWennerWoman

Active Member
Joined
Aug 1, 2019
Messages
303
Office Version
  1. 365
Platform
  1. Windows
Not sure why this isn't working, MsgBox returns 2 if I enter 2 but the If statement isn't happy about it
Code:
Dim zinput As Double

here:
zinput = Application.InputBox("What type of journal do you want to create?" & vbCr & vbCr & _
"Enter 1 for a summary level journal" & vbCr & "Enter 2 for a detailed patient level journal" & vbCr, "Choose Journal Type", Type:=1)
MsgBox zinput
If zinput <> 1 Or zinput <> 2 Then
GoTo here ' keeps looping back to here: even when I enter 1 or 2 in the box?!
End If
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
You need to change to Or to And.
 
Upvote 1
Solution
You're welcome & thanks for the feedback.
 
Upvote 1

Forum statistics

Threads
1,223,891
Messages
6,175,229
Members
452,621
Latest member
Laura_PinksBTHFT

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