Select a cell in column "C" and have UserForm pop up

RicnGean

New Member
Joined
Dec 8, 2019
Messages
10
Office Version
  1. 2010
Platform
  1. Windows
Thank you upfront for any help you can give.

I have Googled on this topic and gone to many of the links, tried using their suggestions and played with the code for hours and still do not get the desired results. When I tab OR click into any cell in column “C” titled “Event”, I want my UserForm17 to pop up. The UserForm has a ComboBox1 that contains a list of 25 events that they can select one of and it will appear in the selected cell. Due to the limitations of Data Validation option (font size, list length etc. – we are dealing with folks in their 60+ that can’t read the small font and aren’t real up on computer stuff) so that is why I am shooting for a UserForm solution. I am using Excel 2010 and Windows 10. I have the UserForm and combobox built already. Here is my latest attempt;

VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

On Error Resume Next

If Target.Name.Name = "Event" Then UserForm17.Show

On Error GoTo 0

 End Sub
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.

Forum statistics

Threads
1,214,588
Messages
6,120,412
Members
448,959
Latest member
camelliaCase

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