View Full Version : Else-Userinput


hardhitter06
03-14-2007, 08:48 AM
Hi All,

I have an else statement where it checks a category selected and if it matches "MU" it returns a value to the box below it. For my else statement, I want to be able to add in my own text. When i do the else statement ="0" for example, it enters a "0" into that field, is there a command, or special type of syntax i need, to be able to enter whatever i want if i hit the else statement?

Thankyou

pbaldy
03-14-2007, 08:52 AM
InputBox for one.

boblarson
03-14-2007, 08:52 AM
...
Else
YourVariableNameHere = InputBox("Enter What You Want Here","Enter Info")
End IF

hardhitter06
03-14-2007, 08:54 AM
Thank you guys!