userform to show based on cell value

donny1shot

New Member
Joined
Mar 8, 2018
Messages
18
Hi All,
I am trying to have a userform show if a cell value is selected as yes from it's drop down list.

any help please. Below is the code I am using in the userform code coding sheet.
Code:
Private Sub UserForm_activiate()
If Sheets("HCR").Range("C13").Text = "Yes" Then
UserForm1.Show
End If
End Sub
This isn't working for me I need the userform to show if YES is selected in that cell
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try the following in the module of your HCR sheet...

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$13" And Target.Text = "Yes" Then Userform1.Show
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,889
Messages
6,175,223
Members
452,620
Latest member
dsubash

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