Userform, IF-function

The Student

New Member
Joined
Sep 27, 2018
Messages
24
Office Version
  1. 365
Platform
  1. Windows
Hi
Can someone see why this doesn´t work.
If I choose a certain element in the first Userform1, I like another to pop-up (Userform2) unless I pick the value that become True.

Even if the value in "A11" become TRUE it will still show Userform2. I don´t know why.

Sub Choise()

Userform1.Show

If Range("A11").Value = "TRUE" Then
Sheets("XXX").Select

Else
Userform2.Show

End If
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
"TRUE" - is a text 'TRUE'
True - is a boolean
What type of result appear in A11?
 
Upvote 0
"TRUE" - is a text 'TRUE'
True - is a boolean
What type of result appear in A11?
Its the "TRUE" value that appear in A11 if the user have chosen that in the Userform. Otherwise it becomes FALSE.

That way I can change the Userform they see depending on their choises.
 
Upvote 0
What is the name of the sheet you want to check A11
 
Upvote 0
It´s the active sheet.
I have called it "Data"

I believe the problem is the TRUE value, because excel sees it as a boolean.
It works if I change it to another value.
 
Upvote 0
How will it appear in the cell?
It appear like this. (See picture).

If the user don´t select that option in the userform, it will become FALSE (FALSK) and another cell in my Data-sheet will become TRUE.

I´m Danish, so SAND=TRUE
 

Attachments

  • True.PNG
    True.PNG
    1.4 KB · Views: 5
Upvote 0

Forum statistics

Threads
1,215,734
Messages
6,126,542
Members
449,316
Latest member
sravya

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