Expand my Community achievements bar.

SOLVED

Calculated field on Selection of another field.

Avatar

Level 2

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

1 Accepted Solution

Avatar

Correct answer by
Level 2

Thanks, this is working for me  

View solution in original post

5 Replies

Avatar

Level 10

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.

Avatar

Level 3

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"))))

Avatar

Correct answer by
Level 2

Thanks, this is working for me