Hidden Table????

Fahsid1230

Active Member
Joined
Dec 26, 2006
Messages
282
Hi Folks,
Everytime I hit F9 on this work book, I realize that there is some calc going thru some sort of hidden Table. On the down left corner, it is going thru more than 20 Table when hit F9. I scroll everywhere and looks if there is any hidden sheet where these Tables maybe located but I couldnt found them yet. Any help in this regard?
Thx
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Try running

Code:
Sub showallsheets()
Dim sh As Worksheet
For Each sh In Worksheets
    sh.Visible = True
Next sh
End Sub
 
Upvote 0
I finally able to try this routine but nothing comes out. The work sheet is still going thru some data table which I 'm still unable to see
Any help?
thx
 
Upvote 0
I finally able to try this routine but nothing comes out. The work sheet is still going thru some data table which I 'm still unable to see
Any help?
thx
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,844
Members
449,051
Latest member
excelquestion515

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