I have to believe this has been solved before, but I could not find a previous post for my particular problem, so apologies if I missed a previous one. I'm trying to use SUMIF/SUMIFS or some variation of formula to look at two different columns of price amounts, determine for each row which of the price amounts is larger, and then sum the larger of those amounts together. Basically wanting the largest possible sum between the two columns of data. Here's some mock data for an example:
So, for example, I would sum these ranges and it would say:
A | B |
100 | 200 |
300 | 100 |
400 | 800 |
500 | 250 |
200 | 400 |
So, for example, I would sum these ranges and it would say:
- Row 1: 200 is larger than 100
- Row 2: 300 is larger than 100
- Row 3: 800 is larger than 400
- Row 4: 500 is larger than 250
- Row 5: 400 is larger than 200
- Final amount is 2200.