![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Feb 2002
Posts: 91
|
Need to fin the minimum value in arow of numbers
|
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Mar 2002
Location: Chicago, IL USA
Posts: 2,042
|
Hi,
Use the MIN function. =MIN(range) Bye, Jay |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Feb 2002
Posts: 91
|
This does not work because it is in a row. It does not work in my case anyhow
|
|
|
|
|
|
#4 | |
|
Board Regular
Join Date: Feb 2002
Posts: 7,743
|
Quote:
|
|
|
|
|
|
|
#5 |
|
Board Regular
Join Date: Feb 2002
Location: Southfield,MI USA
Posts: 1,030
|
Hiya,
Is your data simply numeric and stored in a single row (say A1:Z1 for example)? If that is true, =MIN(A1:Z1) should output the minimum value in that range. Is your data not completely numeric but has some order type (blah1,blah2,blahh3 for example)? feel free to kick out a sample data set, Adam |
|
|
|
|
|
#6 |
|
Board Regular
Join Date: Feb 2002
Posts: 91
|
|
|
|
|
|
|
#7 |
|
Board Regular
Join Date: Feb 2002
Posts: 91
|
Its not recognising my numbers properly because they were numbers which i cocatenated. Even changing the format to number wont work it kepts returning the value 0 as the minvalue.
|
|
|
|
|
|
#8 |
|
Board Regular
Join Date: Feb 2002
Location: Southfield,MI USA
Posts: 1,030
|
Hey again,
You may want to tweak your concatenation formula a little. Instead of =A5&B5 (simplified example) use =(A5&B5)+0 -> this will autoformat the cell as a number. You could also do the: Copy a 0, highlight range, editpaste specialadd to convert to a number - then MIN will work. Adam |
|
|
|
|
|
#9 |
|
Board Regular
Join Date: Feb 2002
Location: Southfield,MI USA
Posts: 1,030
|
Oh, you could also use an array formula I suppose if you need the concatenated version (say for formatting purposes):
={MIN(A1:Z1+0)} hit Ctrl+Shift+Enter to get the brackets Adam |
|
|
|
|
|
#10 |
|
Board Regular
Join Date: Feb 2002
Posts: 91
|
Works great thanks for the help
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|