MAX combination

  • Thread starter Thread starter spence
  • Start date Start date
S

spence

i have data in columns B and C
i have an array formula to calculate the maximum
combination of two adjacent values in these columns:
{MAX((B4:B36)+(C4:C36))}
in column A i have dates. i need a formula that can
return the date from column A that the highest
combination of column B and C values occured. TIA
 
As posted in worksheet.functions

With your data in A1:C30:-

=INDEX(A1:A30,MATCH(MAX(B1:B30+C1:C30),(B1:B30+C1:C30),0)) array entered and formatted as date.
 
Back
Top