Find Lowest value

Muthukrishnan V

Active Member
Joined
May 29, 2008
Messages
280
Office Version
  1. 365
Platform
  1. Windows
Book1
ABCDE
1Excel 365 Find Lowest value and the relative names
2
3NameAmountNameLowest Amount
4ABC7500GHI7300
5DEF7800PQR7300
6GHI7300
7JKL8300
8MNO7600
9PQR7300
Sheet1
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
To find the lowest value and its relative names in Excel 365, you can use a combination of the MIN function, INDEX function, and MATCH function. Here are the steps:
  1. Select the range of cells that contain the values you want to find the lowest value from.
  2. Enter the following formula in a blank cell: =INDEX(range,MATCH(MIN(range),range,0)) Replace "range" with the actual range of cells you selected in step 1.
  3. Press Enter to calculate the formula. This will return the name of the cell containing the lowest value in the range.
  4. To find the next lowest value and its relative name, copy the formula from step 2 to the cell below, and change "MIN(range)" to "MIN(range excluding previous cell)". You can do this by manually adjusting the range or by using the OFFSET function to exclude the previous cell.
  5. Repeat step 4 until you have found all the lowest values and their relative names.
Alternatively, you can use the SMALL function to find the nth smallest value and then use INDEX and MATCH to find its relative name. Here's how:
  1. Select the range of cells that contain the values you want to find the lowest value from.
  2. Enter the following formula in a blank cell: =SMALL(range,n) Replace "range" with the actual range of cells you selected in step 1, and "n" with the nth smallest value you want to find (e.g. 1 for the lowest value, 2 for the second lowest value, etc.).
  3. Press Enter to calculate the formula. This will return the nth smallest value in the range.
  4. Enter the following formula in a blank cell next to the formula from step 2: =INDEX(names,MATCH(nth smallest value,range,0)) Replace "names" with the range of cells that contain the names you want to match to the values in the original range.
  5. Press Enter to calculate the formula. This will return the name of the cell containing the nth smallest value in the range.
  6. Repeat steps 2-5 to find all the lowest values and their relative names.
 
Upvote 0
How about
Fluff.xlsm
ABCDE
1NameAmountNameLowest Amount
2ABC7500GHI7300
3DEF7800PQR7300
4GHI7300
5JKL8300
6MNO7600
7PQR7300
8
Main
Cell Formulas
RangeFormula
D2:E3D2=TAKE(SORT(A2:B100,2,1),COUNTIFS(B2:B100,MIN(B2:B100)))
Dynamic array formulas.
 
Upvote 0
Solution
Hi, see the linked file for a possible solution...
Wrong cells visible on Google Drive, because Google Drive does not know the FILTER function. The formula works correctly with your Office 365.

The formula used in the table:
D4: =FILTER(A:B,B:B=MIN(B:B)) (Range:D4:E5)

Lowest.xlsx

Lowest.png
 
Upvote 0
Thank you Mr. Fluff sir and Mr fjns sir. Works great.
I am very grateful to the Forum.
 
Upvote 0
Hi, I am very glad that the formula works.
If I have enough knowledge, I am happy to help at any time.
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,096
Messages
6,123,074
Members
449,093
Latest member
ripvw

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