2022-09-13 09:06 AM - last edited on 2023-05-31 10:03 AM by Laszlo Simon
Hello,
I have set two different values for A by selecting the size via dropdown.
Parameters:
VALUES "cab_type", "Pysty", "Vaaka"
Master:
IF cab_type = "Pysty" THEN
A = 1.55
ELSE
A = 2.00
ENDIF
The issue is that no matter what option I choose from the dropdown, the value A in the Object Selection Settings it doesn't reflect the new value.
Is there a way to see the new value updated?
Juan.
Solved! Go to Solution.
2022-09-13 09:27 AM
You have only set the value of A - which will be used in al further calculations.
You also need to set the Parameter as well which is what the user sees.
IF cab_type = "Pysty" THEN
A = 1.55
ELSE
A = 2.00
ENDIF
PARAMETERS A = A
Barry.
2022-09-13 09:27 AM
You have only set the value of A - which will be used in al further calculations.
You also need to set the Parameter as well which is what the user sees.
IF cab_type = "Pysty" THEN
A = 1.55
ELSE
A = 2.00
ENDIF
PARAMETERS A = A
Barry.