Forum Discussion
Excel formulas starting to include current sheet name
Hi
I recently noticed that formulas in excel starting to automatically include the "current" sheet name after leaving and coming back to the sheet (example below). I don't remember this used to be the case but I could be wrong. Does anyone have a similar experience or can confirm if this is correct?
Is there a setting somewhere I can turn this on and off?
Example: I have 2 tables (1 per sheet). After clicking on Sheet2 to select the cell I want to sum, coming back to Sheet1 and referencing any cells will include "Sheet1!" in my formula. I believe previously the formula omits "Sheet1!".
Both ways are useful in different scenarios but wondering if I have missed a trick to "turn on and off" how it behaves.
Thanks!
3 Replies
- HecatonchireIron Contributor
Hello,
For your information, this behavior has never changed. I just checked on Excel version 95 (1995).
- NikolinoDEPlatinum Contributor
You're correct – Excel now automatically adds the current sheet name (e.g., Sheet1!) to formulas after you navigate away and back. This is a default behavior change in newer versions.
No setting exists to turn this on or off, so far I know.
Typing formulas manually is the most reliable way to avoid unwanted sheet names. No toggle available – but deleting them takes 1 second.
My answers are voluntary and without guarantee!
Hope this will help you.
- HecatonchireIron Contributor
Hello,
The selection order is what causes this difference in behavior.
If you select cell C35 of the current sheet and then cell C35 of sheet 2, you get:
=C35+sheet2!C35.
If you first select cell C35 of sheet 2 and then cell C35 of the current sheet, you get:
=sheet2!C35+sheet1!C35.
It's the sheet switching that causes this.
For your information: the presence of the name (sheet1) in the reference (sheet1!C35) poses a problem when sorting values.