hello all,
can i use more than 1 IF statment in cell C23 with these criteria?
1) if N22 is 0, return G22 value
2) if G22 is less than 10, return G22+N22
3) if G22 is greater than 10, return G22-negative value
much appreciate!
thanks everyone
can i use more than 1 IF statment in cell C23 with these criteria?
1) if N22 is 0, return G22 value
2) if G22 is less than 10, return G22+N22
3) if G22 is greater than 10, return G22-negative value
much appreciate!
thanks everyone
Cell Formulas | ||
---|---|---|
Range | Formula | |
N22:N26 | N22 | =IF(SIGN(C22)=SIGN(G22),C22-G22,C22+G22) |
O22:O26 | O22 | =IF(N22=0,"/",IF(N22>=1,"A to B",IF(N22<0,"B to A"))) |
E22:E26 | E22 | =C22-D22 |
G22:G26 | G22 | =C22-D22+F22 |