3
I have this formula in the calculation column in the table:
=+(K5+L5)*(1+8%)
working!
I changed the conditional calculation per month, example:
=IF(MONTH(A4)>=10,(+(K4+L4)*(1+10%)),(+(K4+L4)*(1+8%)))
worked!
Question:
How to use AND correctly?
=IF((MONTH(A4)<=2) AND (MONTH(A4)>=10) ,(+(K4+L4)*(1+10%)),(+(K4+L4)*(1+8%)))
Note. The date in cell A4 is in this format:
Year/Month/Day - 2019/02/04
Thus:
IF(AND(MONTH(A4)<=2,MONTH(A4)>=10)...
– Ricardo Pontual