How do I enter one or more amounts in a text box, each followed by the enter key? I want to assign each one a variable and then calculate the total and average. Thanks!
entering multiple values in text box?
Collapse
X
-
Tags: None
-
Can you elaborate on what you're trying to do, with a little more detail? Provide an example, maybe?
You're trying to enter one or more amounts.. in the same text box? In different text boxes? Assigning a variable to the value in a text box is easy, but I'm not sure if that will fully answer your question. -
i want to assign multiple textbox values to variables(in the same text box) and to store each one after i press the enter key. for example "13.4 [ENTER] 99 [ENTER] 13.333 [ENTER] 70 [ENTER] 13243 [ENTER]"Comment
-
Very interesting. I'm not sure if that's possible - otherwise I would love to help.
I know you can delimit arrays of text, but as far as assigning the .Text value of a text box to different variables. I'm not sure.
They would all have the same value because they all have the same reference point and are being handled the same way.
The only thing I can think of is using different handlers, aside from delimiting.
Sorry!Comment
Comment