View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Ron Coderre
 
Posts: n/a
Default look across row - pick highest value - take aplha code of column

Try something like this:

With your data list in A1:E5

F2: =INDEX($A$1:$E$1,1,MATCH(MAX(B2:E2),A2:E2,0))

Is that something you can work with?
***********
Regards,
Ron

XL2002, WinXP


"Little pete" wrote:

I have a large work sheet that is set out like the following;

NEW
COLUMN
A B C D Value
Court 1 0 20 0 80 D
Court 2 30 10 60 0 C
Court 3 90 0 10 0 A
Court 4 0 100 0 0 B

I want to add a new column (Value) to each row which looks across the row to
find the highest value and then takes the Alpha code at the top of that
column.

Any help on this would be great.

Cheers Peter