Find Lowest Value In Single Row

jaxs2009

Board Regular
Joined
Nov 28, 2010
Messages
200
I am using excel 2010,

In a cell C558 I need to find and reflect the lowest value in cells E558, G558, I558, K558, M558, O558, Q558 & S558.

I have tried a V-LOOKUP but maybe not getting it right?

Can anyone help?

Thank you:rolleyes:
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Try the MIN function...

=MIN(E558,G558,I558,etc...)


Also, what is in the intermediate cells (F558, H558, J58, etc)?
Numbers?
If those cells are NOT numeric, then you can just do
=MIN(E558:S558)

Hope that helps.
 
Upvote 0
There are no numeric number in cells between these cells, however after trying =MIN(E558:S558) C558 remains zero.
 
Upvote 0
There are no numeric number in cells between these cells, however after trying =MIN(E558:S558) C558 remains zero.

That suggests that your numbers are not really numbers,
They are "Numbers Stored As Text"

What does

=ISNUMBER(E558) Return?
 
Upvote 0
What I have found is that if anyone of the cells in the selectede range is zero (all cells formatted as accounting, no dollar sign) will refelct a zero value in cells C558.

Need to make this work in a range of cells, some cells may have a number in them and some may be blank.
 
Upvote 0
Blanks should be ignored, but a Zero IS in fact a valid number, therefore counted as the minimum number..

Try this array formula entered with CTRL + SHIFT + ENTER

=MIN(IF(E558:S558<>0,E558:S558))
 
Upvote 0
Jonmo is right. If cells are blank they will be ignored by the MIN function. The accounting format has no relevance

d10f6668.jpg


cell G1 has no value, so it picks up $22
cell G2 has ZERO, hence the $ sign, so it picks up $0
 
Last edited:
Upvote 0
The formula =MIN(IF(E558:S558<>0,E558:S558)) CTR+SHFT+ENTER suggestion worked.

Thank you very much everyone who took the time to help me.

Very much appreciated:)
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

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