Formula Help

Viking88

Board Regular
Joined
Apr 18, 2003
Messages
103
How can I change this formula so I do not have to use an array function. Right now the array calculations are eating up the calucaltion time and making the file much larger than it needs to be:

=SUM(IF((Sheet1!$T$6:$T$80000=$B29)*(Sheet1!$J$6:$J$80000=$A29),Sheet1!$Z$6:$Z$80000,""))

Thanks.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
=sumproduct(--(Sheet1!$T$6:$T$80000=$B29),--(Sheet1!$J$6:$J$80000=$A29),(Sheet1!$Z$6:$Z$80000))

Do you actually need to reference 80,000 rows of data? You might be better off using dynamic ranges.
 
Upvote 0
No I don't need to reference that many rows, but I want to make sure everything is picked up.

What are dynamic ranges and how can I incorporate them?
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,290
Members
452,902
Latest member
Knuddeluff

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top