I need users to input between 2 numbers lets say 86 and 90 in 2 text components. User input a value of 0.05 in 3rd text component where 0.05 is a recurring addition to 86 number (1st value) until 90 and breaks out of the loop.
So it starts with 86 then 86.05, 86.10, 86.15, 86.20 … 89.95, 90.00 and breaks out of loop.
Similarly in reverse direction 90.00, 89.95, 89.90, … 86.05, 86.00 and breaks out of loop.
App should be able to store and display 86.05,90.00 in 1st label; 86.10, 89.95 in the second label; 86.15, 89.90 in the third label. These label should be created by app itself.
Basically I wanted to add, subtract, multiply, divide using a constant number 0.05 between 86 and 90 and display 1st 4 outputs of each function into 1 label.
I used list viewer with stored variables, forever function and break loop but could not get anything. Can anyone help on these blocks. Thank you so much in advance.