Formula's #Value when excel sheet updates Links

Dtex20

Board Regular
Joined
Jan 29, 2018
Messages
50
Hi,

I've got some SumIFS, and CountIFS when my sheet updates it's links to other sheets, that should have no impact on the forumla's the 2 previous mentioned formula's seem to corrupt.

The formula's work if i choose not to update the sheet, and also work if i open the sheet after i update the links.

Has anyone accounted a issue like this before, i'm thinking of swapping to VBA if i can't find a fix.

=COUNTIFS('*SheetName*Orders'!I3:I154116,"="&B338,'*SheetName*Orders'!H3:H154116,">="&C336,'*SheetName*Orders'!H3:H154116,"<="&P325)

=SUMIFS(''*SheetName*Orders'!$L$3:$L$154116,''*SheetName*Orders'!$I$3:$I$154116,"="&B338,''*SheetName*Orders'!$H3:$H$154116,">="&C336,''*SheetName*Orders'!$H3:$H$154116,"<="&D336)

Thanks!
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
SUMIF(S) and COUNTIF(S) do not work with closed workbooks. If you need to work with closed workbooks, you should use SUMPRODUCT instead.
 
Upvote 0
SUMIF(S) and COUNTIF(S) do not work with closed workbooks. If you need to work with closed workbooks, you should use SUMPRODUCT instead.

Code:
=SUMPRODUCT(--(*SheetName*$I:$I=B338),--(*SheetName*!$H:$H>=$C$336),--(*SheetName*$H:$H<=$D$336),*SheetName*$L:$L) - SumIFS
=SUMPRODUCT((((*SheetName*$I:$I=B339)*1)*(*SheetName*!$H:$H>=$C$336)*(*SheetName*$H:$H<=$D$336))) - CountIFS

Thanks very much man, i have shared the forumla's i used incase anyone else needs them.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

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