![]() |
Use VBA code to display message if combobox selection not in list
When using combo box to display drop-down list, users can actually type in
any value they want...not good for what I need. A feasible fix for this is to verify that the value typed in the combo box is in a list...if it isn't display a message that says Try Again. Based on the list below, what would the VBA code look like that says if combo box value is not in list then give error message? List: Monday, Tuesday, Wednesday |
Use VBA code to display message if combobox selection not in list
Change the style of the combobox to fmStyleDropdownList (2).
hurlbut777 wrote: When using combo box to display drop-down list, users can actually type in any value they want...not good for what I need. A feasible fix for this is to verify that the value typed in the combo box is in a list...if it isn't display a message that says Try Again. Based on the list below, what would the VBA code look like that says if combo box value is not in list then give error message? List: Monday, Tuesday, Wednesday -- Dave Peterson |
Use VBA code to display message if combobox selection not in l
Other than converting the combobox to the form style...any help on the code
below? Thanks "Dave Peterson" wrote: Change the style of the combobox to fmStyleDropdownList (2). hurlbut777 wrote: When using combo box to display drop-down list, users can actually type in any value they want...not good for what I need. A feasible fix for this is to verify that the value typed in the combo box is in a list...if it isn't display a message that says Try Again. Based on the list below, what would the VBA code look like that says if combo box value is not in list then give error message? List: Monday, Tuesday, Wednesday -- Dave Peterson |
Use VBA code to display message if combobox selection not in list
Hi, It won''t convert the combobox. Just change its behavior. But anyway, can use MatchRequired and then If MatchFound on change event. TJ :) -- TJS ------------------------------------------------------------------------ TJS's Profile: http://www.excelforum.com/member.php...o&userid=29583 View this thread: http://www.excelforum.com/showthread...hreadid=496810 |
Use VBA code to display message if combobox selection not in l
dim myArr as Variant
myArr = array("Monday","Tuesday","Wednesday") if iserror(application.match(me.combobox1.value,myarr ,0)) then 'not a match, the board goes back else 'do what you want end if But changing the .style is too easy to ignore. hurlbut777 wrote: Other than converting the combobox to the form style...any help on the code below? Thanks "Dave Peterson" wrote: Change the style of the combobox to fmStyleDropdownList (2). hurlbut777 wrote: When using combo box to display drop-down list, users can actually type in any value they want...not good for what I need. A feasible fix for this is to verify that the value typed in the combo box is in a list...if it isn't display a message that says Try Again. Based on the list below, what would the VBA code look like that says if combo box value is not in list then give error message? List: Monday, Tuesday, Wednesday -- Dave Peterson -- Dave Peterson |
All times are GMT +1. The time now is 05:06 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com