Is it possible to pass the value that is in a variable into a constant? This is what I'm trying to do, but I don't know if I'm leaving out something in the code, or if this is illegal.
Input_User_Name = InputBox("Please enter your name.")
Const UName = Input_User_Name
Thanks!
Input_User_Name = InputBox("Please enter your name.")
Const UName = Input_User_Name
Thanks!