B brin Registered User. Local time Today, 09:55 Joined Nov 14, 2001 Messages 41 Dec 11, 2001 #1 I have a drop down list with options "yes" or "no". How is it possible to have a prompt on each selection e.g if selected "no" then a meassage appears go to 'enter date field'
I have a drop down list with options "yes" or "no". How is it possible to have a prompt on each selection e.g if selected "no" then a meassage appears go to 'enter date field'
Hayley Baxter Registered User. Local time Today, 09:55 Joined Dec 11, 2001 Messages 1,607 Dec 11, 2001 #2 You could try to put some code behind your combo box. If you use an If statement and then vbyesNo function that should work ok. If selection = vbyes & selection then Msgbox "Go to enter date field" else 'do nothing end if end sub
You could try to put some code behind your combo box. If you use an If statement and then vbyesNo function that should work ok. If selection = vbyes & selection then Msgbox "Go to enter date field" else 'do nothing end if end sub