vote up 4 vote down star

I have a SUM array formula that has multiple nested IF statements, making it very inefficient. My formula spans over 500 rows, but here is a simple version of it:

{=SUM(IF(IF(A1:A5>A7:A11,A1:A5,A7:A11)-A13:A17>0, IF(A1:A5>A7:A11,A1:A5,A7:A11)-A13:A17,0))}

As you can see, the first half of the formula checks where the array is greater than zero, and if they are, it sums those in the second part of the formula.

You will notice that the same IF statement is repeated in there twice, which to me is inefficient, but is the only way I could get the correct answer.

The example data I have is as follows:

Sample Data in spreadsheet The answer should be 350 in this instance using the formula I mentioned above.

If I tried to put in a MAX statement within the array, therefore removing the test to find where it was greater than zero, so it was like this: {=SUM(MAX(IF(B2:B6>B8:B12,B2:B6,B8:B12)-B14:B18,0))} However, it seems like it only calculates the first row of data in each range, and it gave me the wrong answer of 70.

Does anyone know a away that I can reduce the size of the formula or make it more efficient by not needing to repeat an IF statement in there?

flag

7 Answers

vote up 1 vote down

A more calculation-efficient (and especially re-calculation efficient) way is to use helper columns instead of array formulae:

C1: =MAX(A1,A7)-A13

D1: =IF(C1>0,C1,0)

copy both these down 5 rows

E1: =SUM(D1:D5)

Excel will then only recalculate the formulae dependent on any changed value, rather than having to calculate all the virtual columns implied by the array formula every time any single number changes. And its doing less calculations even if you change all the numbers.

link|flag
vote up 0 vote down

What about this?

=MAX(SUM(IF(A1:A5>A7:A11, A1:A5, A7:A11))-SUM(A13:A17), 0)

Edit:

Woops - Missed the throwing out negatives part. What about this? Not sure it it's faster...

=SUM((IF(A1:A5>A7:A11,IF(A1:A5>A13:A17,A1:A5,A13:A17),IF(A7:A11>A13:A17,A7:A11,A13:A17))-A13:A17))

Edit 2:

How does this perform for you?

=SUM((((A1:A5>A13:A17)+(A7:A11>A13:A17))>0)*(IF(A1:A5>A7:A11,A1:A5,A7:A11)-A13:A17))
link|flag
Thanks for the suggestion. I tested the formula you suggested using a worksheet profiler, and it showed marginal difference between the two formulas in relation to calculation speed. – unknown (google) Nov 27 '08 at 1:55
vote up 0 vote down

DJ

Thanks for your suggestion, but your formula doesnt work for all scenarios.

Take a look at the below example:

Sample Data in spreadsheet

link|flag
Sorry 190 is correct! - your original is wrong. 120-50 = 70, 40 - 50 = -10, (70 - 10 + 70 - 10 + 70) = 190 – DJ Nov 26 '08 at 23:01
oops - I guess you are throwing out negative values – DJ Nov 26 '08 at 23:02
This should have been an edit to your orignial post, or a comment to DJ's answer – Draemon Dec 2 '08 at 4:35
vote up 0 vote down

This seems to work:

{=SUM(IF(A1:A5>A7:A11,A1:A5-A13:A17,A7:A11-A13:A17))}

EDIT - doesn't handle cases where subtraction ends up negative

This works - but is it more efficient???

{=SUM(IF(IF(A1:A5>A7:A11,A1:A5,A7:A11)>A13:A17,IF(A1:A5>A7:A11,A1:A5,A7:A11)-A13:A17,0))}
link|flag
It is pretty much the same as my original formula – unknown (google) Nov 27 '08 at 1:36
True - but I only do the subtract once – DJ Nov 27 '08 at 17:04
vote up 0 vote down

You may want to look into the VB Macro editor. In the Tools Menu, go to Macros and select Visual basic Editor. This gives a whole programming environment where you can write your own function.

VB is a simple programming language and google has all the guidebooks you need.

There, you can write a function like MySum() and have it do whatever math you really need it to, in a clear way written by yourself.

I pulled this off google, and it looks like a good guide to setting this all up. http://office.microsoft.com/en-us/excel/HA011117011033.aspx

link|flag
vote up 0 vote down

Jimmy

The MAX formula you suggested didnt actually work for all scenarios.

If i changed my sample data in rows 1 to 5 as below (showing that some of the numbers are greater than their respective cells in rows 7 to 11, while some of the numbers are lower)

Sample Data in spreadsheet

The correct answer im trying to achive is 310, however you suggested MAX formula gives an incorrect answer of 275.

Im guessing the formula needs to be an array function to give the correct answer.

Any other suggestions?

link|flag
This should have been an edit to your orignial post, or a comment to Jimmy's answer – Draemon Dec 2 '08 at 4:34
vote up 2 vote down

=MAX( MAX( sum(A1:A5), sum(A7:A11) ) - sum(A13:A17), 0)

link|flag
Thanks. It seems to work mauch faster than may array. – unknown (google) Nov 25 '08 at 3:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.