Hi,
Just wondering for right approach,
I am trying to set an optionset(State) value based on other optionsetvalue(Country)
If Country is 77 set state as 18 else if country is 3 set state as 180 else null
IF((S1=77),18,IF((S1=3),180,null)).
This is failing with error incorrect number of function parameters, incorrect function parameter type. Any help with this?