Auto fill Sumifs not progressing

ratchet1369

Board Regular
Joined
Mar 16, 2009
Messages
54
Morning all,

I've setup a Sumifs to compare dates and split the sum value based on whether it is before or after the date. The date is in column sheet2'!BZ and cell sheet1'!x5. This works on a single line however when I autofill this to the bottom of the spreadsheet, the formula won't progress as X5 within the quote; it remains x5 as a constant. Suggestions on how to make it copy down and have it progress to x6, x7, x8, etc?

=sum(sumifs('sheet2'!$AX:AX,...........'sheet2'!BZ:BZ,{">'sheet1'!x5","='sheet1'x5"}))

the other formula would just be a single ">x5" but has the same issue.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
you can try

{">"&'sheet1'!x5,"="&'sheet1'x5}
or
{">"&'sheet1'!x5,'sheet1'x5}
 
Upvote 0
Try

=sumifs('sheet2'!$AX:AX,...........'sheet2'!BZ:BZ,">="&'sheet1'!x5)

M.
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,816
Members
449,049
Latest member
cybersurfer5000

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