How to change the Tables! ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Thanks for all those who helped to find the data location of the list.

When I did the Insert>Name> Define, I see the name of the list TBL_PEOPLE.
When I click on the name, it shows
=OFFSET(Tables!$D$1,1,0,COUNTA(Tables!$D:$D)-1,1)

However, I am not able to see any worksheet by name Tables. what should I do
to include few more values into this list? Pls help.
 
Quite likely the Tables sheet is hidden.

Format>Sheet>Unhide and do your addition of values then re-define the reference
address to fit your new list.


Gord
 
Gord,

Appreciate your help and response. That was my first hunch. I searched for
any hidden worksheet but could not find one. I saw if the document is
protected for any changes. Nope. The document is not protected either.

Pls help.
 
Maybe it was hidden using VBA's xlveryhidden method.

Try this macro.

Sub unhide()
Dim sh As Worksheet
For Each sh In ActiveWorkbook.Sheets
sh.Visible = True
Next sh
End Sub

Or hit Alt + F11 to open VBE......CTRL + g to open Immediate window.

Paste this in and hit <enter>

Sheets("Tables").Visible = true


Gord
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top