Linked file doesn't update

scalvitto0815

New Member
Joined
Sep 7, 2023
Messages
14
Office Version
  1. 365
Platform
  1. Windows
I have an excel file (MAIN) that is linked to several other files (a,b,c,d,e...) When open MAIN, the data from a, c, d, e,... are present. The data from b shows #VALUE and does not update until I open it. I don't see anything different in the b file, so why is this happening, and how can I fix it?
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Which formula do you use to link file B? Does it use Indirect or similar conditions?
 
Upvote 0
in the main file the formula I use to link the 414 DataMart... file is as follows:
=SUMIF('Z:\Accounting_New\Statutory\KBIC\Journal Entries\2024\07. July\KBIC\[414 Datamart to GL Case & Exp Reserve Adj 07.2024.xlsx]SUPPORT'!$B$7:$B$13,D115,'Z:\Accounting_New\Statutory\KBIC\Journal Entries\2024\07. July\KBIC\[414 Datamart to GL Case & Exp Reserve Adj 07.2024.xlsx]SUPPORT'!$F$7:$F$13)

I use similar formulas, in the main file to link to other filess
 
Upvote 0
=+'Z:\Accounting_New\Statutory\KBIC\Journal Entries\2024\07. July\KBIC\[413 Datamart to GL Paid and Paid Exp Adj 07.2024.xlsx]SUPPORT'!F9

Could it be the sumif formula is causing it to not update ?
 
Upvote 0
You will find that the formulas are much easier to work with if you have the file open while you are working with it since it then doesn't need to show the path.
As Anthony pointed out, you will need to use SumProduct although since you have MS365 Sum will work.

Excel Formula:
=SUMPRODUCT(
('[414 Datamart to GL Case & Exp Reserve Adj 07.2024.xlsx]SUPPORT'!$B$7:$B$13=D115)
*'[414 Datamart to GL Case & Exp Reserve Adj 07.2024.xlsx]SUPPORT'!$F$7:$F$13)

Excel Formula:
=SUM(
('[414 Datamart to GL Case & Exp Reserve Adj 07.2024.xlsx]SUPPORT'!$B$7:$B$13=D115)
*'[414 Datamart to GL Case & Exp Reserve Adj 07.2024.xlsx]SUPPORT'!$F$7:$F$13)
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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