Would be extremely helpful if the properties can be treated in a more dynamic way.
A Text/Value property could be used in multiple textfields and manipulated.
For example:
PropertyOne = “15.50”
In textfield1 is used as it is.
In textfield2 is multiplied by 2 PropertyOne * 2
In textfield3 is appended to another string "Total Cost $" + PropertyOne
The same approach could be used for the booleans to invert their value or use if statement checking multiple properties at the same time.
if (BoolOne == True and BoolTwo == True) then {
False} else { True }