Aggregate Help

dbrown14

New Member
Joined
May 24, 2011
Messages
13
I'm trying to do a simple example of an aggregate function before I get too far into my project and find out things won't work out. So the example I made was to count numbers which are bigger than 200 in a array, and my formula came out to be:

Code:
=AGGREGATE(2,6,('array1'/('array1'>200)))
I've worked with the aggregate function before and I believe this should work, but I always get a #VALUE! error. Please help me solve this problem using the aggregate function.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Well I'm using 2003 and I haven't even got an AGGREGATE() function.

If you want to count how many numbers in an array are larger than 200, you can use COUNTIF.
For example
Code:
=countif(a1:b2,">200")
Replace "a1:b2" with whatever the address of your array is.
 
Upvote 0
Yes, that does work but the main purpose of my question was help using and understanding the aggregate function and the extent of what it's capable of doing.

Thanks for the reply though!! :)
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,241
Members
449,075
Latest member
staticfluids

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