Hi,
I'm trying to set a value of 1 or 0 in a field depending on the value in a field called Communication Language. The field can have any or all of these values. I keep getting an #UNPARSEABLE error and I can't figure out what it doesn't like. I want it to have a value of 1 if it is any language other than these.
=IF([Communication Language]@row ="French" , "1",
IF [Communication Language]@row ="German", "1",
IF([Communication Language]@row = "Spanish", "1",
IF([Communication Language]@row = "Korean", "1",
IF([Communication Language]@row = "Japanese", "1",
IF([Communication Language]@row = "Chinese (Simplified)", "1",
IF([Communication Language]@row = "Chinese (Traditional)", "1", "0")
It is probably obvious, but I can't see the issue. Maybe I have looked at it for too long.
Thanks for your help!