View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Ron Coderre Ron Coderre is offline
external usenet poster
 
Posts: 698
Default Compare data in three fields

With
A1:A3 containing numbers

Try something like this:
A4: =IF(A1=MAX($A$1:$A$3),A1,"")
Copy that formula down through A6

Note: with that formula, if there are ties for largest value, the value will
display in each appropriate cell within A4:A6

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

XL2002, WinXP


"tssgraham" wrote:

I need to look at the data in three fields, determine which is the highest of
the three and then have the highest of the three fields add up in a fourth
field. I'll try to type in an example; if a1 is greater than a2 and greater
than a3 then a1 needs to be posted into a4, but if a2 is greatest than a2
needs to be posted in a5 and if a3 is greatest it needs to be posted in a6.
Hope I didn't confuse you too much! Thanks. Todd.