I want to set up a calculated field to have a pre-set value based on a selection of another field (radio button). So suppose one radio button have 4 options a,b,c and d, I want to have a calculated field that shows 1 for a, 2 for b, 3 for c and d.
Is it possible?
Thanks,
Nisha
Solved! Go to Solution.
Views
Replies
Total Likes
Thanks, this is working for me
Views
Replies
Total Likes
This is possible but the caveat is the form has to be refreshed before any calc takes place. This is usually done by selecting "Recalculate Expressions" from the elipsis menu on the Project.
Views
Replies
Total Likes
Possible to get the code for the same?
Views
Replies
Total Likes
Yes Please.
Views
Replies
Total Likes
Fields:
Radio Type = A, B, C, D
Calculated field =
IF({DE:Radio Type}="A","1",
IF({DE:Radio Type}="B","2",
IF({DE:Radio Type}="C","3",
IF({DE:Radio Type}="D","4"))))
Thanks, this is working for me
Views
Replies
Total Likes