| plz gothrough with the following if condition
if(condition1,"trueblock",if(second condition,"true block",if(third condition,"true block","false block")))
but i need only one if two check above three conditions
example:if(a1=1,"one",if(a1=2,"two",if(a1=3,"three","four")))
|
| hemanth |
| Posted by sureshchinna_sb on | |
| Rate this: ( 3/5 from 1 vote) you can try choose instead of nested ifs
1 | =CHOOSE(A1,"one","two","three","four") | 2 | =CHOOSE(A2,"one","two","three","four") | 3 | =CHOOSE(A3,"one","two","three","four") | 4 | =CHOOSE(A4,"one","two","three","four") |
write the formula in first row n then drag it |
| PD |
| Posted by pooja_dubey12 on |