Hello,
I have a layout which has a number of form text boxes on the screen. I am looking to make it so that when any one of the boxes changes a variable is updated. The variable would contain the sum of all the boxes on the screen. I am looking to do it so that it doesn't matter how many boxes are on the screen so avoiding something like:
"Totalvariable = textbox1.value + textbox2.value"
I was hoping something simple like a "For Each textbox -> Total = Total + textbox.value" but I couldn't get anything to work =(