Aggregate with OR argument within

fixmagic

New Member
Joined
Apr 19, 2018
Messages
2
Hello everyone,

What is working:
25th Percentile for 1 criteria -AGGREGATE(18,6,$C$1:$C$10/($B$1:$B$10="Green"),0.25)
25th Percentile for 2 criteria - AGGREGATE(18,6,$C$1:$C$10/(($B$1:$B$10="Green")*($A$1:$A$10="January")),0.25)


What I am trying to do:
Select January or March for the month

25th Percentile for 2 criteria with an OR
AGGREGATE(18,6,$C$1:$C$10/(($B$1:$B$10="Green")*OR($A$1:$A$10="January",
$A$1:$A$10="March")),0.25)
That formula does not work.

I tried a few variants with and without the OR but never got it to work.

Thank you for your help.


 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Welcome to Mr Excel forum

To use an OR condition in an array formula you should add the conditions. See if this does what you need
=AGGREGATE(18,6,$C$1:$C$10/(($B$1:$B$10="Green")*(($A$1:$A$10="January")+($A$1:$A$10="March"))),0.25)

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,434
Members
448,961
Latest member
nzskater

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