I have sumif formulas calculating the net for the month; all of them work except January. January also counts cells that don't have a date at all. The users want to calculate their net before taxes, so the taxes date is left blank so they don't factor into any month.
However, January then returns a net applying all taxes in Quarter 1 (January, February, and March) because it is counting any cells without a date as January.
Here is the formula:
{=SUM(IF(MONTH(A10:A85)=1, E10:E85,0))}
I need it to only sum the amount if there is a January date in A10:A85, but as mentioned it is also calculating in amounts that are not given a date.
I tried
{=SUM(IF(AND(MONTH(A10:A85)=1, A10:A85<>""),E10:E85,0))}
But that just returned $0.00
However, January then returns a net applying all taxes in Quarter 1 (January, February, and March) because it is counting any cells without a date as January.
Here is the formula:
{=SUM(IF(MONTH(A10:A85)=1, E10:E85,0))}
I need it to only sum the amount if there is a January date in A10:A85, but as mentioned it is also calculating in amounts that are not given a date.
I tried
{=SUM(IF(AND(MONTH(A10:A85)=1, A10:A85<>""),E10:E85,0))}
But that just returned $0.00