Worksheet not Saving array values

RobF

New Member
Joined
Feb 7, 2012
Messages
14
Below is the syntex I am using in the array... and the source file.. when opened will calculate the values. The problem arises when I close the source file and values return to this " #Value". My entire frontend file is nothing but arrays and links compiling data from multiple sources and everything works except cells that have the below array in them.

Can anyone help in figureing out why my cell values will not save upon saving and closing both my frontend file and source file?

=SUMIFS([MIS_Incoming.xls]Weekly_Inc_Overview!$E$2:$E$80,[MIS_Incoming.xls]Weekly_Inc_Overview!$B$2:$B$80,"FRIDAY",[MIS_Incoming.xls]Weekly_Inc_Overview!$C$2:$C$80,TODAY()-3,[MIS_Incoming.xls]Weekly_Inc_Overview!$D$2:$D$80,"First Chargeback")+SUMIFS([MIS_Incoming.xls]Weekly_Inc_Overview!$E$2:$E$80,[MIS_Incoming.xls]Weekly_Inc_Overview!$B$2:$B$80,"FRIDAY",[MIS_Incoming.xls]Weekly_Inc_Overview!$C$2:$C$80,TODAY()-4,[MIS_Incoming.xls]Weekly_Inc_Overview!$D$2:$D$80,"First Chargeback")+SUMIFS([MIS_Incoming.xls]Weekly_Inc_Overview!$E$2:$E$80,[MIS_Incoming.xls]Weekly_Inc_Overview!$B$2:$B$80,"FRIDAY",[MIS_Incoming.xls]Weekly_Inc_Overview!$C$2:$C$80,TODAY()-5,[MIS_Incoming.xls]Weekly_Inc_Overview!$D$2:$D$80,"First Chargeback")+SUMIFS([MIS_Incoming.xls]Weekly_Inc_Overview!$E$2:$E$80,[MIS_Incoming.xls]Weekly_Inc_Overview!$B$2:$B$80,"FRIDAY",[MIS_Incoming.xls]Weekly_Inc_Overview!$C$2:$C$80,TODAY()-6,[MIS_Incoming.xls]Weekly_Inc_Overview!$D$2:$D$80,"First Chargeback")+SUMIFS([MIS_Incoming.xls]Weekly_Inc_Overview!$E$2:$E$80,[MIS_Incoming.xls]Weekly_Inc_Overview!$B$2:$B$80,"FRIDAY",[MIS_Incoming.xls]Weekly_Inc_Overview!$C$2:$C$80,TODAY()-7,[MIS_Incoming.xls]Weekly_Inc_Overview!$D$2:$D$80,"First Chargeback")




Thank You in advance..........

Rob
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Hi Rob,

SUMIFS doesn't work with closed workbooks.

You should use SUMPRODUCT. Something like this

=SUMPRODUCT([MIS_Incoming.xls]Weekly_Inc_Overview!$E$2:$E$80,--([MIS_Incoming.xls]Weekly_Inc_Overview!$B$2:$B$80="FRIDAY"),--([MIS_Incoming.xls]Weekly_Inc_Overview!$C$2:$C$80=TODAY()-3),--([MIS_Incoming.xls]Weekly_Inc_Overview!$D$2:$D$80="First Chargeback")) + SUMPRODUCT(....)+...


Or, better, create a named range, say MyRange, containing
TODAY()-3
TODAY()-4
TODAY()-5
TODAY()-6
TODAY()-7


and use (untested)

=SUMPRODUCT([MIS_Incoming.xls]Weekly_Inc_Overview!$E$2:$E$80,--([MIS_Incoming.xls]Weekly_Inc_Overview!$B$2:$B$80="FRIDAY"),--ISNUMBER(MATCH([MIS_Incoming.xls]Weekly_Inc_Overview!$C$2:$C$80,MyRange,0)),--([MIS_Incoming.xls]Weekly_Inc_Overview!$D$2:$D$80="First Chargeback"))

Hope this helps.

M.
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,614
Members
449,090
Latest member
vivek chauhan

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