VALUE Error When Workbook Updates on Startup

raymaster98

Board Regular
Joined
Oct 28, 2009
Messages
212
Using Excel 2010.

I have a formula in a workbook that links to another workbook and returns a #VALUE! error. The formula is:

=OFFSET(INDEX('\\srvrdata\kenny cantrell$\Kenny''s Folder\Payroll\[DI Staff List.xls]Sheet1'!$D$6:$D$60,MATCH(TRUE,'\\srvrdata\kenny cantrell$\Kenny''s Folder\Payroll\[DI Staff List.xls]Sheet1'!$D$6:$D$60=B3,0)),0,2)

However, when I open the source workbook, the cell updates correctly. How can I get the cell's formula to update when the source data workbook is closed?

Any help would be appreciated.

Thanks, Kenny
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi Kenny,

There are two parts of that formula that don't work with references to a closed workbook:
OFFSET and the Array Formula reference to Sheet1'!$D$6:$D$60=B3

Try this revised version that uses some alternatives to replace those parts...

=INDEX('\\srvrdata\kenny cantrell$\Kenny''s Folder\Payroll\[DI Staff List.xls]Sheet1'!$D$6:$F$60,MATCH(B3,'\\srvrdata\kenny cantrell$\Kenny''s Folder\Payroll\[DI Staff List.xls]Sheet1'!$D$6:$D$60,0),3)
 
Upvote 0

Forum statistics

Threads
1,203,522
Messages
6,055,893
Members
444,832
Latest member
Kauri

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