deepgrewal22
Instructor
- May 2, 2005
- 108
I have a question pertaining to Microsoft Excel 2003. I have a workbook with many sheets. The sheets can be renamed by the end user. However, there is a Master sheet which refers to summary data from each sheet.
Currently, I can reference a particular cell from, let's say, Sheet1 as:
However, I would like to reference this sheet no matter what the end user decided to rename it. I know in the VBA module each Sheet has a property called name: Sheet1.Name. Without having to use the VBA module, is there any way that I can refer to a sheets name within a cell?
I know that the following code below doesn't work. Is there something similar that does?
Deep Grewal
"Microsoft Works" - oxymoron
Currently, I can reference a particular cell from, let's say, Sheet1 as:
Code:
=Sheet1!A1
However, I would like to reference this sheet no matter what the end user decided to rename it. I know in the VBA module each Sheet has a property called name: Sheet1.Name. Without having to use the VBA module, is there any way that I can refer to a sheets name within a cell?
I know that the following code below doesn't work. Is there something similar that does?
Code:
=Sheet1.Name!A1
Deep Grewal
"Microsoft Works" - oxymoron