I have a set of data representing total sales by month from column B to column M. I'd like to create a formula that can find the largest sum of two adjacent cells.
Example
1,3,4,6,6,1,9,2,5,2,1,4
I would want the formula to state 12 (6+6) as the answer, I've only been able to come up with a formula that returns "11" representing the (9+2).
I tried a formula that found the largest value and then used a second formula for finding the larger value of the adjacent cells. I did not take into account that the largest number and it's adjacent cell does not always equate to the largest sum of two adjacent cells.
I used a total of 4 formulas
I used =LARGE(B17:M17,1) in cell R17 and then in Q19 and R19 i used =INDEX(B17:M17,MATCH(R17,B17:M17,0)-1) and =INDEX(B17:M17,MATCH(R17,B17:M17,0)+1) and for the final formula i used =R17+LARGE(Q19:R19,1) –