INDIRECT Formula shows #VALUE! error when opening the file

StephenArg

New Member
Joined
Mar 22, 2019
Messages
5
I have an Excel workbook with no external references and no VBA. There are only 4 worksheets in the file and on one of those worksheets, I use the INDIRECT formula to automate getting a value from a cell in a different worksheet in the same workbook. The formula is looking for a value from within the "V2_front" sheet and it is:

=INDIRECT("V2_front!"&ADDRESS(14,ROW()+$A$13))

The result of this formula is equivalent to: =V2_front!D14

My issue is that, every time I open the workbook, all the cells that have that formula and any that are dependent on it show the #VALUE! error. I then double-click on any of the error cells then press enter to refresh it and all the cells go back to normal again, with everything working as expected. I've noticed the same problem with another (entirely unrelated) workbook, which also uses INDIRECT.

BTW: I'm using Office 367 on a MacBook Pro and have the latest version of Microsoft Excel for Mac (16.54) installed.

Does anyone have any ideas about why this is happening or how to resolve it?

Thanks
Stephen
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Check if your calculation settings are set to manual. You need automatically.

File -> settings -> formulas
 
Upvote 0
You can also rewrite that formula without INDIRECT:

Excel Formula:
=INDEX(V2_front!$14:$14,ROW()+$A$13)
 
Upvote 0

Forum statistics

Threads
1,215,045
Messages
6,122,830
Members
449,096
Latest member
Erald

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