How to take the highest value from below the average of a range

helpneeded14

New Member
Joined
Sep 15, 2017
Messages
2
Hi everyone,

I'm coming across a problem for a greater issue and was hoping someone could help with the first step. I'm trying to put together a staffing and sizing chart (the big problem, that I may ask for help with at a later date) but have a question for the staffing component.

My issue is as follows:

I have the monthly volume of clients entering our office and would like Excel to automatically calculate the highest value that is below the average of the same range. Basically, I'd like to find out the amount of staff we would need in the slow season and how many in the peak (using the MAX formula in the peak). I figure that if I take the average volume for the entire year, then anything below this average is the slow season and anything above is the peak.

Let's say that the volumes are as follows:


January - 1000
February - 1100
March - 900
April - 1300
May - 1800
June - 800
July - 700
August - 1800
September - 1700
October - 1200
November - 900
December - 600

The average here is 1150, the highest value below the average is 1100, so I want Excel to find this number to which I can divide it by the working days of the month and divide it again by the staff's capacity in a day. Is there a formula in Excel that can help automatically calculate the above?

If there is a logic gap here as well, I'm very open to ideas!!

From there, I hope to then plug in some estimates on how big the space needs to be with that type of volume. I might be back asking for how to best do this on a later post but hopefully with the above it will help me get to the next step!

Thanks very much everyone in advance!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Hi
Welcome to the board

Try this array formula:

=MAX(IF(B1:B12<AVERAGE(B1:B12),B1:B12))<average(b1:b12),b1:b12))


This is an array formula, you have to confirm it with CTRL-SHIFT-ENTER and not just ENTER.</average(b1:b12),b1:b12))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,252
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