Hi,
I have a nested IFS formula checking a column "B" for a condition against values in Column A.
Using IFS (or nested IF) statement, I want to override the "IFS" condition if there is any amount in the D column (sometime it'll be black, sometimes, not).
I've tried adding "=IF(NOT" and "=OR(TRUE" conditions to the formula, but I'm doing them wrong.
Help appreciated.
I have a nested IFS formula checking a column "B" for a condition against values in Column A.
Using IFS (or nested IF) statement, I want to override the "IFS" condition if there is any amount in the D column (sometime it'll be black, sometimes, not).
Conditions.xlsx | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | % | ROI | Action | Buy Back Amount | |||
2 | 33.30% | 31% | Keep Grinding! | ||||
3 | 67.67% | 37% | Take Profit!!! | $ 250.00 | |||
4 | -16.70% | 4% | Keep Grinding! | ||||
5 | -10% | Watch 👁️ | |||||
6 | 12% | Keep Grinding! | |||||
7 | -18% | SELL/DCA NOW! | $ 130.00 | ||||
8 | 32% | Keep Grinding! | |||||
9 | 35% | Take Profit!!! | |||||
10 | -4% | Watch 👁️ | $ 75.00 | ||||
11 | |||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C2:C10 | C2 | =IFS(B2=" ","",B2>$A$2,"Take Profit!!!",B2>0,"Keep Grinding!",B2>$A$4,"Watch 👁️",B2<$A$4,"SELL/DCA NOW!") |
I've tried adding "=IF(NOT" and "=OR(TRUE" conditions to the formula, but I'm doing them wrong.
Help appreciated.