help with formula

S

Steve

a2..c2 are columns of numbers. a1..c1 are accounts. i want a formula in
column d, beginning in row 2. the formula will return the value in row 1 and
column "x" where "x" is the column that has the maximum row value for any
given row.

example:

a1..c1 = 6001, 6002, 6003 respectively.
a2..c2 = $5, $0, $0 respectively.
the formula in d2 will return 6001.
 
J

Jacob Skaria

Hi Steve

Try the below
=INDEX(A1:C1,MATCH(MAX(A2:C2),A2:C2,0))

If this post helps click Yes
 

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

Top