Max and Min over multiple sheets with a condition

bgbdwolf85

New Member
Joined
Oct 16, 2016
Messages
3
Hello all,
I am having some trouble with my latest spreadsheet and havnt figured it out yet. Below is a breakdown of what is going on:

I have names in E2:E53 on sheet FY15, FY16, FY17.

I have a % in E:E53 on sheet FY15, FY16, FY17.

On each sheet, the same name may appear more than once in E2:E53.

On the "Totals" sheet, I have all the names listed in A2:A26.

On the "Totals" sheet, I have two columns; E for low value and F for the high.

I am looking for the lowest and highest value for each name from the FY15:FY17 sheets.

Any ideas, thanks for reading.

R/S
Jason
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
You are correct. It was way past my bed time when I decided to quit trying to figure it out and reach out for assistance. Below is all the information, corrected.

Hello all,
I am having some trouble with my latest spreadsheet and havnt figured it out yet. Below is a breakdown of what is going on:

I have names in E2:E53 on sheet FY15, FY16, FY17.

I have a % in G2:G53 on sheet FY15, FY16, FY17, this % corresponds to the name in the E column.

On each sheet, the same name may appear more than once in E2:E53.

On the "Totals" sheet, I have all the names listed in A2:A26.

On the "Totals" sheet, I have two columns; E for low value and F for the high.

I am looking for the lowest and highest value for each name from the FY15:FY17 sheets.

Sorry for the typo's, any ideas or guidance would be greatly appreciated, thanks for reading.

R/S
Jason
 
Upvote 0
The easiest way would be to combine the data from all three sheets.

On a separate "helper sheet" just combine all the values into one big table. Then use a MAX(IF( and MIN(IF( array formulas. Like this:


Book1
AB
1NAMEPERCENT
2MATT50
3JOHN30
4FRANK80
5BILL70
6BILL20
7SUSAN50
8MATT60
9JOHN35
10FRANK99
11MATT12
12JOHN88
13FRANK22
14BILL2
15BILL8
16SUSAN95
17MATT55
18JOHN60
19FRANK14
20MATT30
21JOHN30
22FRANK66
23BILL90
24BILL20
25SUSAN10
26MATT5
27JOHN1
28FRANK8
Helper




Book1
ABCDEF
1NAMESBCDLOWHIGH
2MATT560
3JOHN188
4FRANK899
5BILL290
6SUSAN1095
Totals
Cell Formulas
RangeFormula
E2{=MIN(IF(Helper!A:A=A2,Helper!B:B))}
F2{=MAX(IF(Helper!A:A=A2,Helper!B:B))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
svendiamond,
Thank you for your response. Its a very good idea and would work perfectly except this spreadsheet is living document where values are added weekly on the FY15:FY17 sheets, well not FY15 any longer. My goal is to track the final "Grade Point Average" (Column G) for each class an instructor (Column E) teaches;several a year. So when I look at my "Totals" page, I can see what the lowest class grade and highest class grade was for each instructor. Not sure if that helps clear things up or not. Thanks again.

R/S
Jason
 
Upvote 0
So on your HELPER page just have formulas filled down to grab any new information from the FY17 sheet, etc.


Book1
AB
1NAMEPERCENT
2MATT30
3JOHN30
4FRANK66
5BILL90
6BILL20
7SUSAN10
8MATT5
9JOHN1
10FRANK8
1100
1200
1300
1400
1500
1600
1700
1800
1900
2000
2100
2200
2300
2400
2500
2600
2700
2800
Helper
Cell Formulas
RangeFormula
A2='FY17'!E2
B2='FY17'!G2
 
Upvote 0

Forum statistics

Threads
1,214,818
Messages
6,121,725
Members
449,049
Latest member
MiguekHeka

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