Min formula with 2 criteria

Ron99

Active Member
Joined
Feb 10, 2010
Messages
347
Office Version
  1. 2016
Platform
  1. Windows
Hello,

I need a simple MIN formula with 2 criteria. Below Is the table

[TABLE="width: 184"]
<tbody>[TR]
[TD="width: 78, bgcolor: transparent"]component
[/TD]
[TD="width: 103, bgcolor: transparent"]description
[/TD]
[TD="width: 64, bgcolor: transparent"]qty
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]a
[/TD]
[TD="bgcolor: transparent"]systematic
[/TD]
[TD="bgcolor: transparent, align: right"]10
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]d
[/TD]
[TD="bgcolor: transparent"]non-systematic
[/TD]
[TD="bgcolor: transparent, align: right"]62
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]c
[/TD]
[TD="bgcolor: transparent"]systematic
[/TD]
[TD="bgcolor: transparent, align: right"]84
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]b
[/TD]
[TD="bgcolor: transparent"]systematic
[/TD]
[TD="bgcolor: transparent, align: right"]56
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]d
[/TD]
[TD="bgcolor: transparent"]systematic
[/TD]
[TD="bgcolor: transparent, align: right"]3
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]b
[/TD]
[TD="bgcolor: transparent"]non-systematic
[/TD]
[TD="bgcolor: transparent, align: right"]1
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]a
[/TD]
[TD="bgcolor: transparent"]non-systematic
[/TD]
[TD="bgcolor: transparent, align: right"]9
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]c
[/TD]
[TD="bgcolor: transparent"]systematic
[/TD]
[TD="bgcolor: transparent, align: right"]84
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]b
[/TD]
[TD="bgcolor: transparent"]systematic
[/TD]
[TD="bgcolor: transparent, align: right"]25
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]f
[/TD]
[TD="bgcolor: transparent"]non-systematic
[/TD]
[TD="bgcolor: transparent, align: right"]9
[/TD]
[/TR]
</tbody>[/TABLE]

I would like the formula to lookup criteria under column A and give me the min value only for systemic parts. example component A, SYSTEMATIC MIN value is 10
 
Last edited:

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
I guess this worked for me. Thanks.

{=MIN(IF($A:$A=A2,IF($B:$B="SYSTEMATIC",$C:$C)))}
 
Upvote 0
For a standard-entry formula try this, copied across

Excel Workbook
ABCDEFG
1componentdescriptionqtyComponentab
2asystematic10Descriptionsystematicsystematic
3dnon-systematic62Minimum1025
4csystematic84
5bsystematic56
6dsystematic3
7bnon-systematic1
8anon-systematic9
9csystematic84
10bsystematic25
11fnon-systematic9
Min
 
Upvote 0

Forum statistics

Threads
1,225,370
Messages
6,184,569
Members
453,243
Latest member
Jemini Jimi

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