Not able to find a existing sheet in excel file?

Premanshu

Board Regular
Joined
Oct 2, 2007
Messages
91
I have a defined function in an excel file. When i paste the funtion in any cell it returns a value. I tried finding out where/how is it fetching the value through formula auditing, where i saw it's pulling the value from a sheet named Data2, cell g23, though this sheet is not showing in the file.
I also tried to find it out from the Format >> Sheet >> Unhide option but it's not even there.

Then I also used ctrl+g (goto) to figure it but not succeeded. Had it been a sheet which does not compleatly exists in the file then Goto option must have prompted an error but it did not.

Can anyone help me figuring out the sheet where it is and how it has been hidden/protected in such a way that it's hard to find.

I also went through the protection options to check if the file is anyhow protected to keep things invisible but it's not.


Regards
Premanshu.
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
It may have been hidden using the code...
Code:
Sheets("Data2").Visible = xlVeryHidden
You could try...
Code:
Sheets("Data2").Visible = xlSheetVisible
to unhide it.
 
Upvote 0
Thank You So Much Georgiboy.... it worked for me
thanks again you were a great help to me....
have a nice day.. :)>

Premanshu.
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,701
Members
448,980
Latest member
CarlosWin

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