I hope the title is not confusing. Well, let me explain.
I have a userform with a textbox. I assign the user-entered value to a variable like this:
Dim balance as Long
balance = UserForm1.TextBox1.Value
Now if user enters 1234 in the textbox, first 1 gets stored in 'balance' then 2, then 3 and then 4. I want 1234 to be stored in 'balance' at a time which is required for looping up next my code. Is there a way?
I have a userform with a textbox. I assign the user-entered value to a variable like this:
Dim balance as Long
balance = UserForm1.TextBox1.Value
Now if user enters 1234 in the textbox, first 1 gets stored in 'balance' then 2, then 3 and then 4. I want 1234 to be stored in 'balance' at a time which is required for looping up next my code. Is there a way?