Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default MAX & MAXA returning 0 value

I am trying to simply get the highest value in a column.

I have tried both MAX & MAXA functions, as well as ensured the values are
formatted as a number (although maxa doesn't seem to require this).

The values in the column are derived from another via the mid text function,
but the cells are in fact formatted as numbers.

There are 300 rows evaluated in the formula, but even when I try just 3
values, I still get the same 0 answer. I've also done the "show precedents"
arrows, and I am evaluating the correct ranges. I've even checked that I have
automatic calculation enabled. No error messages are coming up.

Any help is appreciated.


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default MAX & MAXA returning 0 value

Totally mystified...

I type a number into a cell, and another number in the cell below.
I type max(a1, a2).
I get an answer of 0.

"-Rocket" wrote:

I am trying to simply get the highest value in a column.

I have tried both MAX & MAXA functions, as well as ensured the values are
formatted as a number (although maxa doesn't seem to require this).

The values in the column are derived from another via the mid text function,
but the cells are in fact formatted as numbers.

There are 300 rows evaluated in the formula, but even when I try just 3
values, I still get the same 0 answer. I've also done the "show precedents"
arrows, and I am evaluating the correct ranges. I've even checked that I have
automatic calculation enabled. No error messages are coming up.

Any help is appreciated.


  #3   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default MAX & MAXA returning 0 value

just because the cells are formatted as numbers, does not mean the contents
are numbers even if they look like it

in your equations using mid()
change to =value(mid(xxx))
"-Rocket" wrote:

I am trying to simply get the highest value in a column.

I have tried both MAX & MAXA functions, as well as ensured the values are
formatted as a number (although maxa doesn't seem to require this).

The values in the column are derived from another via the mid text function,
but the cells are in fact formatted as numbers.

There are 300 rows evaluated in the formula, but even when I try just 3
values, I still get the same 0 answer. I've also done the "show precedents"
arrows, and I am evaluating the correct ranges. I've even checked that I have
automatic calculation enabled. No error messages are coming up.

Any help is appreciated.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default MAX & MAXA returning 0 value

So... despite formatting the cells as numbers, the mid function overrides it
as text.

Solution: value(mid(a1, 5, 2))
Where a1 is the original text cell, 5 is the first letter in the text to
copy, and 2 is the # of letters to copy.


"-Rocket" wrote:

I am trying to simply get the highest value in a column.

I have tried both MAX & MAXA functions, as well as ensured the values are
formatted as a number (although maxa doesn't seem to require this).

The values in the column are derived from another via the mid text function,
but the cells are in fact formatted as numbers.

There are 300 rows evaluated in the formula, but even when I try just 3
values, I still get the same 0 answer. I've also done the "show precedents"
arrows, and I am evaluating the correct ranges. I've even checked that I have
automatic calculation enabled. No error messages are coming up.

Any help is appreciated.


  #5   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default MAX & MAXA returning 0 value

should work. I am personally disapointed in the description of Maxa. it is
easy to imply that it would look at "2" and read it as 2 rather than 0

"-Rocket" wrote:

So... despite formatting the cells as numbers, the mid function overrides it
as text.

Solution: value(mid(a1, 5, 2))
Where a1 is the original text cell, 5 is the first letter in the text to
copy, and 2 is the # of letters to copy.


"-Rocket" wrote:

I am trying to simply get the highest value in a column.

I have tried both MAX & MAXA functions, as well as ensured the values are
formatted as a number (although maxa doesn't seem to require this).

The values in the column are derived from another via the mid text function,
but the cells are in fact formatted as numbers.

There are 300 rows evaluated in the formula, but even when I try just 3
values, I still get the same 0 answer. I've also done the "show precedents"
arrows, and I am evaluating the correct ranges. I've even checked that I have
automatic calculation enabled. No error messages are coming up.

Any help is appreciated.




  #6   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default MAX & MAXA returning 0 value

if there is a chance that there would be a leading or trailing space in your
mid function use
=value(trim(mid(a1, 5, 2)))

"-Rocket" wrote:

So... despite formatting the cells as numbers, the mid function overrides it
as text.

Solution: value(mid(a1, 5, 2))
Where a1 is the original text cell, 5 is the first letter in the text to
copy, and 2 is the # of letters to copy.


"-Rocket" wrote:

I am trying to simply get the highest value in a column.

I have tried both MAX & MAXA functions, as well as ensured the values are
formatted as a number (although maxa doesn't seem to require this).

The values in the column are derived from another via the mid text function,
but the cells are in fact formatted as numbers.

There are 300 rows evaluated in the formula, but even when I try just 3
values, I still get the same 0 answer. I've also done the "show precedents"
arrows, and I am evaluating the correct ranges. I've even checked that I have
automatic calculation enabled. No error messages are coming up.

Any help is appreciated.


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default MAX & MAXA returning 0 value

Many thanks!

"bj" wrote:

should work. I am personally disapointed in the description of Maxa. it is
easy to imply that it would look at "2" and read it as 2 rather than 0

"-Rocket" wrote:

So... despite formatting the cells as numbers, the mid function overrides it
as text.

Solution: value(mid(a1, 5, 2))
Where a1 is the original text cell, 5 is the first letter in the text to
copy, and 2 is the # of letters to copy.


"-Rocket" wrote:

I am trying to simply get the highest value in a column.

I have tried both MAX & MAXA functions, as well as ensured the values are
formatted as a number (although maxa doesn't seem to require this).

The values in the column are derived from another via the mid text function,
but the cells are in fact formatted as numbers.

There are 300 rows evaluated in the formula, but even when I try just 3
values, I still get the same 0 answer. I've also done the "show precedents"
arrows, and I am evaluating the correct ranges. I've even checked that I have
automatic calculation enabled. No error messages are coming up.

Any help is appreciated.


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 - 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
=if returning 0 Jim Excel Worksheet Functions 4 December 15th 05 07:09 PM
Returning a 0 Value Steved Excel Worksheet Functions 3 July 29th 05 02:44 AM
Need some help returning a value rcarrollct Excel Worksheet Functions 2 July 6th 05 11:36 PM


All times are GMT +1. The time now is 11:21 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"