Need some help

  • Thread starter Thread starter John21
  • Start date Start date
J

John21

Is there any way to use a function like this:
=OFFSET(MAX(A2:E2),1,2,1,1)

the goal is to find the first 3 bigger values in a row and return them
with the title of the column.
 
From Excel help on Offset:

OFFSET(reference,rows,cols,height,width)

Reference is the reference from which you want to base the offset.
Reference must refer to a cell or range of adjacent cells; otherwise, OFFSET
returns the #VALUE! error value.

-------------------

The first argument must be a cell reference, not a value:

MAX(A2:E2)

Biff
 
From Excel help on Offset:

OFFSET(reference,rows,cols,height,width)

Reference is the reference from which you want to base the offset.
Reference must refer to a cell or range of adjacent cells; otherwise, OFFSET
returns the #VALUE! error value.

-------------------

The first argument must be a cell reference, not a value:

MAX(A2:E2)

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top