Countifs and Averageifs

jsteifel

New Member
Joined
Sep 2, 2014
Messages
2
I am currently using the following formula to count the number of sold units in the last 30 days that matches this criteria.

=ARRAYFORMULA(COUNTIFS(Sold!C:C,"C300W4", Sold!I:I, "MB CERT", Sold!B:B,"2011", Sold!D:D, I7, Sold!AG:AG,">" &TODAY()-30))

Using the same criteria, I would like to get the average of Sold!AK:AK for those that match the criteria in the above formula. How would I do that?


 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
This looks like Google Sheets. Are you sure this needs to be an arry formula for:
Rich (BB code):
=COUNTIFS(
   Sold!C:C,"C300W4",
   Sold!I:I,"MB CERT",
   Sold!B:B,"2011",
   Sold!D:D,I7,
   Sold!AG:AG,">"&TODAY()-30)


And for avearging...
Rich (BB code):
=AVERAGEIFS(
  Sold!AK:AK,
  Sold!C:C,"C300W4", 
  Sold!I:I,"MB CERT",
  Sold!B:B,"2011",
  Sold!D:D, I7,
  Sold!AG:AG,">"&TODAY()-30)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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