Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
blue.jag
 
Posts: n/a
Default How torecord the highest value in a set of constantly changing num

In Exel, how can I record the highest value (automatically) from a row of
numbers that changes each day. At the end of the year I still need to have
the highest number recorded over the whole year even though each previous
day's numbers disappear.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Coderre
 
Posts: n/a
Default How torecord the highest value in a set of constantly changing num

If the numbers are in Row 1:

B2: =MAX(1:1)
OR
B2: =MAX(A1:Z1)

If the numbers are in Col_A:

B2: =MAX(A:A)
OR
B2: =MAX(A1:A100)

Adjust range references to suit your situation

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"blue.jag" wrote:

In Exel, how can I record the highest value (automatically) from a row of
numbers that changes each day. At the end of the year I still need to have
the highest number recorded over the whole year even though each previous
day's numbers disappear.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
blue.jag
 
Posts: n/a
Default How torecord the highest value in a set of constantly changing

Thanks Ron.
Your answer returns the maximum for the current column, but when the column
of figures changes tomorrow and every day for the next 364 days, I still need
to retain one maximum figure over the whole 365 days.
Your suggestion only gives me the max one day at a time and then that max is
gone the next day!

"Ron Coderre" wrote:

If the numbers are in Row 1:

B2: =MAX(1:1)
OR
B2: =MAX(A1:Z1)

If the numbers are in Col_A:

B2: =MAX(A:A)
OR
B2: =MAX(A1:A100)

Adjust range references to suit your situation

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"blue.jag" wrote:

In Exel, how can I record the highest value (automatically) from a row of
numbers that changes each day. At the end of the year I still need to have
the highest number recorded over the whole year even though each previous
day's numbers disappear.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Coderre
 
Posts: n/a
Default How torecord the highest value in a set of constantly changing

Are you saying that the list of numbers changes every day, but you still want
to know the largest value that the range of numbers EVER had during the year?
Even though that number may not exist in the latest version of the data?


***********
Regards,
Ron

XL2002, WinXP-Pro


"blue.jag" wrote:

Thanks Ron.
Your answer returns the maximum for the current column, but when the column
of figures changes tomorrow and every day for the next 364 days, I still need
to retain one maximum figure over the whole 365 days.
Your suggestion only gives me the max one day at a time and then that max is
gone the next day!

"Ron Coderre" wrote:

If the numbers are in Row 1:

B2: =MAX(1:1)
OR
B2: =MAX(A1:Z1)

If the numbers are in Col_A:

B2: =MAX(A:A)
OR
B2: =MAX(A1:A100)

Adjust range references to suit your situation

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"blue.jag" wrote:

In Exel, how can I record the highest value (automatically) from a row of
numbers that changes each day. At the end of the year I still need to have
the highest number recorded over the whole year even though each previous
day's numbers disappear.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
blue.jag
 
Posts: n/a
Default How torecord the highest value in a set of constantly changing

Yes please Ron.
Thank you in advance
Blue.jag

"Ron Coderre" wrote:

Are you saying that the list of numbers changes every day, but you still want
to know the largest value that the range of numbers EVER had during the year?
Even though that number may not exist in the latest version of the data?


***********
Regards,
Ron

XL2002, WinXP-Pro


"blue.jag" wrote:

Thanks Ron.
Your answer returns the maximum for the current column, but when the column
of figures changes tomorrow and every day for the next 364 days, I still need
to retain one maximum figure over the whole 365 days.
Your suggestion only gives me the max one day at a time and then that max is
gone the next day!

"Ron Coderre" wrote:

If the numbers are in Row 1:

B2: =MAX(1:1)
OR
B2: =MAX(A1:Z1)

If the numbers are in Col_A:

B2: =MAX(A:A)
OR
B2: =MAX(A1:A100)

Adjust range references to suit your situation

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"blue.jag" wrote:

In Exel, how can I record the highest value (automatically) from a row of
numbers that changes each day. At the end of the year I still need to have
the highest number recorded over the whole year even though each previous
day's numbers disappear.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron Coderre
 
Posts: n/a
Default How torecord the highest value in a set of constantly changing

OK...more questions (you saw that coming, right?)

By any chance, is it possible/practical to maintain a separate row of data
for each day so that all days will be stored in the same worksheet? That
would be the simplest approach. (I'm hoping for a YES on this one)

If NO, then the alternatives are much less attractive:

-Data Consolidate (Not exceptionally difficult, but is limited to structured
data and availability of historical workbooks. Can be particularly annoying
to maintain, but there are procedural workarounds to simplify the
effort...see my "Manual copy/paste_values comment, though)

-Linked workbooks (something I only do as a last resort)

-Manual copy/paste_values (I loathe "procedural" solutions....they are
always impacted by the same hardware problem: A loose nut in front of the
keyboard!)

-VBA processing of each day's data (somewhat of a mini-project...plus is
there somebody who will understand/maintain the model?)

All are doable, though....so, let us know what you prefer.

***********
Regards,
Ron

XL2002, WinXP-Pro


"blue.jag" wrote:

Yes please Ron.
Thank you in advance
Blue.jag

"Ron Coderre" wrote:

Are you saying that the list of numbers changes every day, but you still want
to know the largest value that the range of numbers EVER had during the year?
Even though that number may not exist in the latest version of the data?


***********
Regards,
Ron

XL2002, WinXP-Pro


"blue.jag" wrote:

Thanks Ron.
Your answer returns the maximum for the current column, but when the column
of figures changes tomorrow and every day for the next 364 days, I still need
to retain one maximum figure over the whole 365 days.
Your suggestion only gives me the max one day at a time and then that max is
gone the next day!

"Ron Coderre" wrote:

If the numbers are in Row 1:

B2: =MAX(1:1)
OR
B2: =MAX(A1:Z1)

If the numbers are in Col_A:

B2: =MAX(A:A)
OR
B2: =MAX(A1:A100)

Adjust range references to suit your situation

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


"blue.jag" wrote:

In Exel, how can I record the highest value (automatically) from a row of
numbers that changes each day. At the end of the year I still need to have
the highest number recorded over the whole year even though each previous
day's numbers disappear.

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
Finding (Multiple) Highest Values in Column Shay Hurley Excel Worksheet Functions 1 October 3rd 05 04:19 PM
sorting a constantly changing set of rows in VBA ayl322 Excel Discussion (Misc queries) 4 September 16th 05 03:04 PM
Highest Value / Circular Reference Help Josh M Excel Discussion (Misc queries) 1 May 23rd 05 07:33 PM
Highest Value / Circular Reference Help Josh M Excel Worksheet Functions 0 May 23rd 05 06:49 PM
In Excel, I need to now how to pick the second highest number in . Keith Excel Worksheet Functions 4 January 19th 05 03:23 PM


All times are GMT +1. The time now is 05:28 AM.

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

About Us

"It's about Microsoft Excel"