Count if Sum if question

JD_Excels

Banned user
Joined
Jul 29, 2022
Messages
13
Office Version
  1. 2021
Platform
  1. Windows
Hello,
I am trying to do a sumifs on column F which is working fine.
But i only want it to count if Column AH is empty.

I dont want column F, counting if column AH has data ..
1659390886747.png

1659390905811.png
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
If you have one criteria, you can just use SUMIF:

=SUMIF(criteria_range, criteria, sum_range)
=SUMIF(AH:AH,"",F:F)

If you have multiple, you can use SUMIFS:

=SUMIFS(sum_range, criteria_range_1, criteria_1, criteria_range_2, criteria_2, etc.)
=SUMIFS(F:F,AH:AH,"",AD:AD,D6)

These are examples, insert your actual ranges you'd like to refer to. The AH:AH,"" bits are checking to see if the cell in that column is blank for the given row(s).
 
Upvote 0
How about
Excel Formula:
=SUMIFS('Forecast Validation'!$AE:$AE,'Forecast Validation'!$D:$D,$D6,'Forecast Validation'!$AH:$AH,"")
 
Upvote 0
That is not a very helpful answer.
In what way didn't it work?
 
Upvote 0

Forum statistics

Threads
1,216,073
Messages
6,128,644
Members
449,461
Latest member
kokoanutt

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top