I am getting an error indicating the value of my variable is too large for the field. Please tell me the command (and syntax) to display the value to the screen before attempting to do the save. Thanks!!
I am getting an error indicating the value of my variable is too large for the field. Please tell me the command (and syntax) to display the value to the screen before attempting to do the save. Thanks!!
Tell us about the variable-- What datatype? What are you assigning to it?
If in vba, you could Debug.Print myvariableName and you'll either get an error or the current value in the immediate window.
put a stop on the line after its assigned,
ctl-G (immediate window)
type ? , then the variable: ?iMyVar
or hoover the cursor over the variable after the stop,it will show the value.