Sumifs in excel 2003

fraufreda

Board Regular
Joined
Oct 14, 2010
Messages
190
I am using the following function in 2007
=IF(E237="","",SUMIFS('General Ledger'!$G$6:$G$1048576,'General Ledger'!$A$6:$A$1048576,E237,'General Ledger'!$F$6:$F$1048576,"<>Current Period Change"))

but when saving the file into 2003 i receive incompatibility msg concerning the number of rows and sumifs function.
Okay I reduced the number of rows but I am struggling to get around other problem. I am wondering if you could help me creating UDF with the same format of sumifs i.e.(sum_range,criteria_range1,criteria1,...). or maybe give me some other solution.
thanks
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
How about:
Code:
=IF(E237="","",SUMPRODUCT(('General Ledger'!$G$6:$G$65536)*('General Ledger'!$A$6:$A$65536=E237)*('General Ledger'!$F$6:$F$65536<>"Current Period Change")))
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,285
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