Median with multiple condition formula

kogur

New Member
Joined
Jul 28, 2014
Messages
15
Hey folks,

As the title says, I am trying to make this formula work. Any idea what I might be doing wrong?

{=MEDIAN(IF('Raw Median Incidents'!$Y:$Y="1 - Critical",IF('Raw Median Incidents'!$F:$F="2019",IF('Raw Median Incidents'!$G:$G="2/2019",'Raw Median Incidents'!$I:$I))))}

Column Y=Priority
Column F=Year Closed
Column F=Month Closed
Column I = Hours to resolve

I'm sure you all see what I'm doing but just in case - I want the Median Hours to resolve based on priority, year, and month.

It keeps coming back with a NUM error.

I've been on the fence with kutools for years - would that help with this?
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Why avoid using entire columns?
It slows down the workbook, as the formula has to look-at & calculate almost 4.2 million cells. It's better to limit the ranges like
Excel Formula:
=MEDIAN(FILTER($I$2:$I$10000,($Y$2:$Y$10000="1 - Critical")*($F$2:$F$10000=2019)*($G$2:$G$10000="2/2019")))
and just set the 10,000 to more rows than you will ever need, without going too far

Any idea why you're formula might be returning a CALC error?
There is nothing that matches all 3 criteria.
 
Upvote 0

Forum statistics

Threads
1,215,323
Messages
6,124,244
Members
449,149
Latest member
mwdbActuary

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