IF to return an other IF funtion
-
IH
I’m trying to get that an IF operation returns the string of one other IF operation if the result of one other filename returns a specific value.
Basically it must return the result of the IF filename 26 if the filename 25 returns 1, or the IF filename 27 if the filename 25 returns 2 or the IF filename 28 if the filename 25 returns 3.
I’m using with no success:
(function(){
switch(fieldname25){
case 1: return fieldname26
case 2: return fiedname27;
case 3: return fieldname28;
case 0: return ” “;
}
})()
Can you help me?
Regards
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘IF to return an other IF funtion’ is closed to new replies.