A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Highest Number Offsets



 
 
Thread Tools Display Modes
  #1  
Old September 16th, 2004, 09:51 AM
Alec Kolundzic
external usenet poster
 
Posts: n/a
Default Highest Number Offsets

Can anyone help;

I'm trying to find the highest number in a column, then
copy that number and the data in the cells of the next
two rows into three adjacent cells.

=ADDRESS(MATCH(MAX(F:F),F:F,0),COLUMN(F1),4)

The above function gives the address of the highest
number in column F. but when I combine the above function
with the OFFSET function, as shown below, I get errors.

Any ideas

=OFFSET((ADDRESS(MATCH(MAX(F:F),F:F,0),COLUMN
(F1),4)),0,1,1,1)
  #2  
Old September 16th, 2004, 10:04 AM
Andy Brown
external usenet poster
 
Posts: n/a
Default

Any ideas

You could try 3 sep formulas ...

=MAX(F:F)
=INDEX(F:F,MATCH(MAX(F:F),F:F)+1,1)
=INDEX(F:F,MATCH(MAX(F:F),F:F)+2,1)

HTH,
Andy


  #3  
Old September 16th, 2004, 11:08 AM
Alec Kolundzic
external usenet poster
 
Posts: n/a
Default

Thanks Andy

F G H
7 6 3
8 7 2
79 8 1
10 9 0
34 10 -1
12 11 -2
13 12 -3

From the above three columns, the three function give the
following results:
79 0 0
and not:
79 8 1

Any ideas


-----Original Message-----
Any ideas


You could try 3 sep formulas ...

=MAX(F:F)
=INDEX(F:F,MATCH(MAX(F:F),F:F)+1,1)
=INDEX(F:F,MATCH(MAX(F:F),F:F)+2,1)

HTH,
Andy


.

  #4  
Old September 16th, 2004, 11:25 AM
Andy Brown
external usenet poster
 
Posts: n/a
Default

From the above three columns, the three function give the
following results:
79 0 0
and not:
79 8 1

Any ideas


I semi-agonised over whether to ask if you *really* meant "data in the cells
of the next two *rows*" ...

=MAX(F:F)
=INDEX(G:G,MATCH(MAX($F:$F),$F:$F,0),1)
=INDEX(H:H,MATCH(MAX($F:$F),$F:$F,0),1)

Rgds,
Andy


  #5  
Old September 16th, 2004, 12:00 PM
Alec Kolundzic
external usenet poster
 
Posts: n/a
Default

Thanks Andy
That works a treat.

-----Original Message-----
From the above three columns, the three function give

the
following results:
79 0 0
and not:
79 8 1

Any ideas


I semi-agonised over whether to ask if you *really*

meant "data in the cells
of the next two *rows*" ...

=MAX(F:F)
=INDEX(G:G,MATCH(MAX($F:$F),$F:$F,0),1)
=INDEX(H:H,MATCH(MAX($F:$F),$F:$F,0),1)

Rgds,
Andy


.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Restart Autonumber Traci New Users 22 July 21st, 2004 01:10 AM
Update query by 1/2 entered number Eb1mom Running & Setting Up Queries 2 July 9th, 2004 02:07 AM
Job Number Match function??????? Russ Worksheet Functions 3 April 19th, 2004 06:51 PM
Excel- Inserting a varying number of rows Ken Wright Worksheet Functions 1 March 20th, 2004 10:20 PM
Is there a formula to tell me if one number is a multiple of another number? Marvin Hlavac Worksheet Functions 4 November 28th, 2003 02:33 AM


All times are GMT +1. The time now is 11:23 PM.


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