Need help with formula when data changes in column

lee009

New Member
Joined
Nov 4, 2014
Messages
13
I have a sheet with thousands of rows of data. I have one column with different 'stations'. For example, column D is where my stations are and the data is 1A, 1B, 1C, 2A, 2B, 2C, etc. Each station has approximately 1500 rows/incidents of data that pertains to it. One of the columns associated with each row is a time field. I have to find the median time for each station, for all its incidents. Is there a formula I can use that essentially states give me the median for all stations in column D and separate each station as it changes in the column? For example, 'station' 1A might have 1400 incidents with 1400 different times; 'station' 1B might have 1350 incidents with 1350 different times.

Looking for an easy formula that will get the median for each 'station'
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
I'd probably use an array formula (easy one).

Code:
{=MEDIAN(IF($D$2:$D$20000=Z1,$E$2:$E$20000))}

Where:
D2:D20000 is your range of station names
E2:E20000 is your range of station times
Z1 is a specific station name (eg "1A")

Note this is an array formula. Hit "Ctrl+Shift+Enter" to get the {} brackets.
 
Upvote 0

Forum statistics

Threads
1,214,806
Messages
6,121,672
Members
449,045
Latest member
Marcus05

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