mummbles74
Board Regular
- Joined
- Nov 14, 2009
- Messages
- 120
- Office Version
- 365
- Platform
- Windows
I am trying to create a message box that contains text and dim(ed) values in the text as below
Dim Holder As String
Holder = InputBox("Enter Holder")
Dim Updatedate As String
Updatedate = InputBox("Enter Date of day before last update")
I now want to us these values as the msgbox text like
msgbox("your holder is"&holder&"and your date is"&Updatedate&"thankyou")
but this seems not to work. Any idea what I am doing wrong
(this is not the actual text but will give me the info i need)
Thanks in advance for the help
Dim Holder As String
Holder = InputBox("Enter Holder")
Dim Updatedate As String
Updatedate = InputBox("Enter Date of day before last update")
I now want to us these values as the msgbox text like
msgbox("your holder is"&holder&"and your date is"&Updatedate&"thankyou")
but this seems not to work. Any idea what I am doing wrong
(this is not the actual text but will give me the info i need)
Thanks in advance for the help