I have NumericField and i want to be calculated
( IF TextField1 is "Freihandlabor" then is "0", if is "CHO" then NumericField3 = NumericField1 * 3 + 300)
But TextField1 is taking words from other dropdownlist.
I'v tried with this formula but TextField1 is converting too.
Thank you
if (TextField1 == "Freihandlabor") then
NumericField3 = "0"
elseif
(TextField1 == "CHO") then
NumericField3 = NumericField1 * 3 + 300
endif