Yes, but it'll appear only when the files has opened completely.
Juan Pablo
i used.....
Sub Auto_open()
MsgBox ("Welcome!")
End Sub
is it possible to have something similar like
Sub Auto_open()
MsgBox ("Please insert you name")
textBox?
End Sub
So the can enter their details that would ultimately update a cell in the opened spreadhsheet?!!!??
the InputBox method, it's similar to MsgBox, but this one accepts entries.
Juan Pablo
Thanks Juan
Where does the text that is entered go? can I send it to "A1"?
Sub Test()
Dim Str as String
Str = InputBox("Message here","Title")
Range("A1") = Str
End Sub
YOU ARE A LEGEND JUAN PABLO!!