how to catch minimum in column with same condition

Valley

Board Regular
Joined
Aug 30, 2006
Messages
97
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Dear,

I need to catch a minimum value from a column with same condition.

For example.
A B C
123 0.5 0.5
123 0.8 0.5
123 0.6 0.5
123 1.0 0.5
124 0.3 0.3
124 0.5 0.3
124 0.6 0.3
124 1.1 0.3

Below example,
Same condition: A
Value: B
I need get result like C

Please help to give a solution, thanks in advance!

Valley
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Dear,

I need to catch a minimum value from a column with same condition.

For example.
A B C
123 0.5 0.5
123 0.8 0.5
123 0.6 0.5
123 1.0 0.5
124 0.3 0.3
124 0.5 0.3
124 0.6 0.3
124 1.1 0.3

Below example,
Same condition: A
Value: B
I need get result like C

Please help to give a solution, thanks in advance!

Valley
Try this. Copy formula in C1 down column C as far as you need to go after changing the absolute references accordingly.
Excel Workbook
ABC
11230.50.5
21230.80.5
31230.60.5
412310.5
51240.30.3
61240.50.3
71240.60.3
81241.10.3
Sheet10
 
Upvote 0
Try this. Copy formula in C1 down column C as far as you need to go after changing the absolute references accordingly.
Excel Workbook
ABC
11230.50.5
21230.80.5
31230.60.5
412310.5
51240.30.3
61240.50.3
71240.60.3
81241.10.3
Sheet10

Many thanks for your helps.
BTW, how to calculate without zero.

Regards,
Valley
 
Upvote 0
Please explain.

A B C
123 0.5 0.5
123 0.8 0.5
123 0.6 0.5
123 1.0 0.5
124 0.3 0.3
124 0.5 0.3
124 0.6 0.3
124 1.1 0.3
125 1.4 0.8
125 1.2 0.8
125 1.0 0.8
125 1.5 0.8
125 0.8 0.8
125 0 0.8

like above, please help to give a solution without delete row including zero, thanks.

Valley
 
Upvote 0
A B C
123 0.5 0.5
123 0.8 0.5
123 0.6 0.5
123 1.0 0.5
124 0.3 0.3
124 0.5 0.3
124 0.6 0.3
124 1.1 0.3
125 1.4 0.8
125 1.2 0.8
125 1.0 0.8
125 1.5 0.8
125 0.8 0.8
125 0 0.8

like above, please help to give a solution without delete row including zero, thanks.

Valley

C2, control+shift+enter and copy down:

=MIN(IF($A$2:$A$15=A2,IF($B$2:$B$15>0,$B$2:$B$15)))
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,279
Members
452,630
Latest member
OdubiYouth

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