MS Excel - Combo Box: Custom Entry?

Hi there. I am creating an employee time sheet which tracks what project a person is on. I have a Combo box that has predefined project criteria (of course).

I would like to do is have, as a last option, "Other - Please Specify" If this option is chosen, then the person will be able to manually write in a custom text pertaining to what custom project they worked on for that day.

Is there an efficient way to do this?

Thanks for your help!

Update:

This is what I wrote:

Update 3:

Private Sub UserForm_Click()

If ComboBox1.Value = "Other - please specify" Then TextBox1.Visible = True

End Sub

Private Sub UserForm_Initialize()

ComboBox1.List = Array("Choose One", "Administration", "Asset Audit", "Eng", "FFE", "Focus Group", "Holiday", "Meetings (Other)", "Meetings (Project)", "RMT", "SDA Report", "SDO", "Sick", "Tech Serv", "Training", "Vacation", "Other - please specify")

End Sub

Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Helpful Social

Copyright © 2024 Q2A.ES - All rights reserved.