Min with criteria

josh62400

New Member
Joined
Sep 19, 2002
Messages
3
I currently have a 2 worksheets in one workbook. The first is a "summery" of the second. The second list all of the raw materials that have been recieved with the date recieved and their physical properties (the same raw material may be listed several times with different dates and physical properties.) We'll call it WKSHT 2. For example, some of the physical properties on WKSHT 2 are as follows: width, wgt, thickness... I need to find the min and max thickneses and widths for each particular raw material on WKSHT 2 and post them on WKSHT 1. The DMIN function decribes what I want to do but I cant get to work correctly.
Please Help.
Thanks.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
like this

MIN(Sheet1!A1:Sheet1!A5)
MAX(Sheet!A1:Sheet1!A5)

Replace the "Sheet1!" with your worksheet name followed by a ! and the cells and BOOM you got it
 
Upvote 0
I'm assuming you're in a situation like the following:

On a DataSheet-
A2:A100 contains widgit names (some repeating)
B2:B100 contains measurements (say widths)

On a Summary sheet-
Your trying to find the min and max width (for example) for a list of widgets.

If true, you can use this array formula:

{=MIN(IF(DataSheet!$A$2:$A$100=Summary!E2,DataSheet!$B$2:$B$100))}

and

{=MAX(IF(DataSheet!$A$2:$A$100=Summary!E2,DataSheet!$B$2:$B$100))}

Where "Summary!E2" contains a Widgit name on the summary sheet.

-Note that as an array formula you'll need to hit Crtl+Shift+Enter (instead of just Enter) after typing the formula.

HTH
This message was edited by Asala42 on 2002-09-20 11:39
 
Upvote 0

Forum statistics

Threads
1,203,462
Messages
6,055,565
Members
444,799
Latest member
CraigCrowhurst

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