Munkholm
2008-10-29, 08:56 AM
I´m trying to get a formula to return different text strings, depending on the value in another parameter (PARAM_A)
IF(PARAM_A = 1, "Text option A", " ") OR IF(PARAM_A = 2, "Text option B", " ") OR IF(PARAM_A = 3, "Text option C", " ")
I can get it working with just one option:
IF(PARAM_A = 1, "Text option A", " ")
Any, and All help, is greatly apreciated ! Thanks.
IF(PARAM_A = 1, "Text option A", " ") OR IF(PARAM_A = 2, "Text option B", " ") OR IF(PARAM_A = 3, "Text option C", " ")
I can get it working with just one option:
IF(PARAM_A = 1, "Text option A", " ")
Any, and All help, is greatly apreciated ! Thanks.