• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Summing 2 Columns and Storing in a Array to Calculate Max

Hi,


I need to sum 2 columns by each row. I would like a formula to store each sum in array form and right calculate the maximum result beetween array elements.


That is the example:

B1 C1

1 2

2 3

1 1

1 1


Array formula = (1+2;2+3;1+1;1+1)


Max = (5)


Thanks in advance.


Luis
 
Array formula:

=MAX(A2:A5+B2:B5)


Remember to confirm using Ctrl+Shift+Enter, not just Enter.
 
Back
Top