EXCEL 2000 SUMIFS alternative

atlong00

New Member
Joined
Feb 27, 2017
Messages
2
Hi Everyone, I was using openoffice calc and having problems so I decided to use the version of EXEL 2000 I have. Well it does not support SUMIFS. I have been trying unsuccessfully to setup my multiple critera formula using SUMIF and SUMPRODUT, but no success.

Below is the code i was using in openoffice can someone help with my problem?

=SUMIFS(Transactions!$I$5:$I$1197,Transactions!$B$5:$B$1197,"^02.*",Transactions!$F$5:$F$1197,Budget!$A91)

This sums the Deposit column I after checking the current month in column B to see if the first two characters are 02 and if the text in Budget!A91 matches any of the text in the category column F.

Thanks in advance for any help
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hi, welcome to the board :)

maybe this (based only on the formula you provided)...
=SUMproduct((Transactions!$I$5:$I$1197),--(left(Transactions!$B$5:$B$1197,2)=02),--(Transactions!$F$5:$F$1197,Budget!$A91))
untested
 
Upvote 0
Hi Thanks for the quick response, the code you sent has the same problems I was having. The first array testing the date gets 0 as the result. I have the date column formated as a date mm/dd/yyyy. On the last array I am getting a value error. Any other suggestions would be appreciated.

Thanks for your help
 
Upvote 0
OK I figured, from what you said, the date was text, try this if you are using real dates...
=SUMproduct((Transactions!$I$5:$I$1197),--(month(Transactions!$B$5:$B$1197,2)=2),--(Transactions!$F$5:$F$1197,Budget!$A91))
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,685
Members
448,977
Latest member
dbonilla0331

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