SumIF's vs array formula..

Dtex20

Board Regular
Joined
Jan 29, 2018
Messages
50
Array forumla = =SUM(IF('Order Sheet'!$C$7:$C$19358>=Summary!B3,IF('Order Sheet'!$C$7:$C$19358<=Summary!C3,'Order Sheet'!$F$7:$F$19358)))

SUMIFs = =SUMIFS('Order Sheet'!F7:F19358,'Order Sheet'!C7:C19358, ">=B3",'Order Sheet'!C7:C19358, ">=C3")


I have two formula's one array, one a sumif. B3 & C3 contain a date, the formula looks for that date, if true adds the dates between the range in B3:C3.


I tried to remove the array forumla and do a SUMIFs but it doesn't work. The spreadsheet is so slow with the array forumla it's used over 30 times.

Can anyone point to where i'm going wrong?

Thanks
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
You have the quotation marks in the wrong place:

=SUMIFS('Order Sheet'!F7:F19358,'Order Sheet'!C7:C19358, ">="&B3,'Order Sheet'!C7:C19358, ">="&C3)
 
Upvote 0
Array forumla = =SUM(IF('Order Sheet'!$C$7:$C$19358>=Summary!B3,IF('Order Sheet'!$C$7:$C$19358<=Summary!C3,'Order Sheet'!$F$7:$F$19358)))

SUMIFs = =SUMIFS('Order Sheet'!F7:F19358,'Order Sheet'!C7:C19358, ">=B3",'Order Sheet'!C7:C19358, ">=C3")


I have two formula's one array, one a sumif. B3 & C3 contain a date, the formula looks for that date, if true adds the dates between the range in B3:C3.


I tried to remove the array forumla and do a SUMIFs but it doesn't work. The spreadsheet is so slow with the array forumla it's used over 30 times.

Can anyone point to where i'm going wrong?

Thanks

try

=SUMIFS('Order Sheet'!F7:F19358,'Order Sheet'!C7:C19358, ">="&B3,'Order Sheet'!C7:C19358, "<="&C3)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,592
Messages
6,120,433
Members
448,961
Latest member
nzskater

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