Is there a way to insert a UserForm's control value into the text of a MsgBox?
My attempt:
Any ideas?Code:MsgBox ComboBox5.Value "does not exist in " ComboBox6.Value ". Please try again."
Printable View
Is there a way to insert a UserForm's control value into the text of a MsgBox?
My attempt:
Any ideas?Code:MsgBox ComboBox5.Value "does not exist in " ComboBox6.Value ". Please try again."
Code:MsgBox ComboBox5.Value & "does not exist in " & _
ComboBox6.Value & ". Please try again."
Thanks Koolsid - you're the man!