#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 187
Default MAX, MAXA functions

I have a column of data, E:2:E15000. These data are either numbers,
text, or logical errors.

I want to find the maximum value of the numbers in this column. Both
MAX and MAXA give #VALUE! errors, presumably because of the text and
logical errors in this column.

Is there another function that will return the maximum value?

Dave
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 533
Default MAX, MAXA functions

You could use this formula: =MAX(IFERROR(E2:E15000,0))

It must be "array-entered", that is, by pressing Ctrl-Shift-Enter rather
than just Enter.

--
Jim
"Dave F" wrote in message
...
I have a column of data, E:2:E15000. These data are either numbers,
text, or logical errors.

I want to find the maximum value of the numbers in this column. Both
MAX and MAXA give #VALUE! errors, presumably because of the text and
logical errors in this column.

Is there another function that will return the maximum value?

Dave



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 533
Default MAX, MAXA functions

My suggestion assumes the largest number will be 0 or greater.

--
Jim
"Dave F" wrote in message
...
I have a column of data, E:2:E15000. These data are either numbers,
text, or logical errors.

I want to find the maximum value of the numbers in this column. Both
MAX and MAXA give #VALUE! errors, presumably because of the text and
logical errors in this column.

Is there another function that will return the maximum value?

Dave



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default MAX, MAXA functions

If there might be negatives:

=MAX(IFERROR(E2:E100,""))

Note that this will only work in Excel 2007. For previous versions:

=MAX(IF(ISERROR(E2:E100),"",E2:E100))

=MAX(IF(ISNUMBER(E2:E100),E2:E100))

All formulas are array entered. Array formulas need to be entered using the
key combination of CTRL,SHIFT,ENTER (not just ENTER)



--
Biff
Microsoft Excel MVP


"Jim Rech" wrote in message
...
My suggestion assumes the largest number will be 0 or greater.

--
Jim
"Dave F" wrote in message
...
I have a column of data, E:2:E15000. These data are either numbers,
text, or logical errors.

I want to find the maximum value of the numbers in this column. Both
MAX and MAXA give #VALUE! errors, presumably because of the text and
logical errors in this column.

Is there another function that will return the maximum value?

Dave





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
MAX & MAXA returning 0 value -Rocket Excel Discussion (Misc queries) 6 March 19th 07 05:31 PM
efficiency: database functions vs. math functions vs. array formula nickname Excel Discussion (Misc queries) 2 July 14th 06 04:26 AM
Looking for a site with functions that substitute the ATP functions Franz Verga Excel Worksheet Functions 3 June 24th 06 04:30 AM
MAX, MAXA - Driving me to the point of distraction!!! Blobbies Excel Discussion (Misc queries) 2 June 8th 06 09:56 PM
Countif, Maxa or other function? jacobk Excel Worksheet Functions 2 April 1st 06 06:20 AM


All times are GMT +1. The time now is 06:38 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"