in this existing formula in cell D1, I want to check if the date in A1 is equal to or higher than 01-July-2023 then deduct 10% from the answer
e.g. if B1 is a value of 100 and C1 is 10% then calculate B1*C1 and the result will be 10 in D1
from this result (10) in D1, I want to deduct 10% of D1 if the date in A1 is equal to or higher than 01-July-2023 so the result will be 9
my existing formula is: =IF(AND(B1<>"",C1<>""),B1*C1,"") where I am checking if the cell value is not "" and I also want to keep this exciting setting.
e.g. if B1 is a value of 100 and C1 is 10% then calculate B1*C1 and the result will be 10 in D1
from this result (10) in D1, I want to deduct 10% of D1 if the date in A1 is equal to or higher than 01-July-2023 so the result will be 9
my existing formula is: =IF(AND(B1<>"",C1<>""),B1*C1,"") where I am checking if the cell value is not "" and I also want to keep this exciting setting.
MWVirk PSX Portfolio v0004.xlsx | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | 1-Jul-2023 | 100 | 10% | 10 | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D1 | D1 | =IF(AND(B1<>"",C1<>""),B1*C1,"") |