Using Min and if to produce a text response

ajt8888

New Member
Joined
Aug 23, 2010
Messages
35
Office Version
  1. 2019
Platform
  1. Windows
This is probably very straightforward but its doing my head in, can someone help I have a worksheet which has two columns one with Names the other with value, all i need is a formula in column 3 that will return for each individual "lowest" for the lowest value attributed to that person and "ignore" to the rest of the values for that person. Many thanks in advance.

NameValue
Harry567
Harry568
Harry569
Harry570
Harry571
Dave459
Dave460
Dave461
Dave462
Dave463
Dave464
Pete333
Pete331
Pete332
Pete333
Pete333
Pete338
Steve172
Steve173
Steve174
Steve175
Steve176
Steve177
Steve177
Steve177
Steve177
Steve177
Steve177

<tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Hello,

In cell C2, you can have following Array formula

Code:
=MIN(IF($A$2:$A$29=A2,$B$2:$B$29))

Instead of the Enter key ... use simultaneously the 3 keys : Control Shift Enter

Hope this will help
 
Last edited:
Upvote 0
James thanks but that is not what was required, what I want is a formula that identifies the lowest number and puts the word lowest into cell c2 or if its not the lowest then ignore



Hello,

In cell C2, you can have following Array formula

Code:
=MIN(IF($A$2:$A$29=A2,$B$2:$B$29))

Instead of the Enter key ... use simultaneously the 3 keys : Control Shift Enter

Hope this will help
 
Upvote 0
Hello again,

Have a try with:

Code:
=IF(B2=MIN(IF($A$2:$A$29=A2,$B$2:$B$29)),"Lowest","")

HTH
 
Upvote 0

Forum statistics

Threads
1,213,484
Messages
6,113,927
Members
448,533
Latest member
thietbibeboiwasaco

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