PC Review


Reply
Thread Tools Rate Thread

Can't view formulas referenced tab

 
 
=?Utf-8?B?cGFibG9iYW5kaXRv?=
Guest
Posts: n/a
 
      7th Sep 2007
I have a file that references another tab. I have done all the obvious
things to be able to see other tabs; to no success.

The formula is "=LOOKUP(Q4,Items!$A$3:$A$50,Items!$B$3:$B$50)"

I know the tab is contained within this worksheet because the cell changes
if I change the reference in the formula.

I do not see the "Items" tab but I really need too. Does anyone have any
suggestions.


 
Reply With Quote
 
 
 
 
=?Utf-8?B?RHVrZSBDYXJleQ==?=
Guest
Posts: n/a
 
      7th Sep 2007
press Alt-F11 to open the VBA editor (VBE)
press Ctrl-G to open the Immediate window at the bottom right of the screen
Paste in

thisworkbook.Sheets("Items").visible = xlsheetvisible

and press enter

Alt-tab back to Excel



"pablobandito" wrote:

> I have a file that references another tab. I have done all the obvious
> things to be able to see other tabs; to no success.
>
> The formula is "=LOOKUP(Q4,Items!$A$3:$A$50,Items!$B$3:$B$50)"
>
> I know the tab is contained within this worksheet because the cell changes
> if I change the reference in the formula.
>
> I do not see the "Items" tab but I really need too. Does anyone have any
> suggestions.
>
>

 
Reply With Quote
 
=?Utf-8?B?S2V2aW4gQg==?=
Guest
Posts: n/a
 
      7th Sep 2007
Click WINDOw in the menu and see if there's a worksheet to unhide. If that
is one of the obvious things you've already tried please excuse...
--
Kevin Backmann


"pablobandito" wrote:

> I have a file that references another tab. I have done all the obvious
> things to be able to see other tabs; to no success.
>
> The formula is "=LOOKUP(Q4,Items!$A$3:$A$50,Items!$B$3:$B$50)"
>
> I know the tab is contained within this worksheet because the cell changes
> if I change the reference in the formula.
>
> I do not see the "Items" tab but I really need too. Does anyone have any
> suggestions.
>
>

 
Reply With Quote
 
=?Utf-8?B?S2V2aW4gQg==?=
Guest
Posts: n/a
 
      7th Sep 2007
I wouldn't have thought of that, although I've done it in the past. Thanks
for the heads up...
--
Kevin Backmann


"Duke Carey" wrote:

> press Alt-F11 to open the VBA editor (VBE)
> press Ctrl-G to open the Immediate window at the bottom right of the screen
> Paste in
>
> thisworkbook.Sheets("Items").visible = xlsheetvisible
>
> and press enter
>
> Alt-tab back to Excel
>
>
>
> "pablobandito" wrote:
>
> > I have a file that references another tab. I have done all the obvious
> > things to be able to see other tabs; to no success.
> >
> > The formula is "=LOOKUP(Q4,Items!$A$3:$A$50,Items!$B$3:$B$50)"
> >
> > I know the tab is contained within this worksheet because the cell changes
> > if I change the reference in the formula.
> >
> > I do not see the "Items" tab but I really need too. Does anyone have any
> > suggestions.
> >
> >

 
Reply With Quote
 
=?Utf-8?B?RHVrZSBDYXJleQ==?=
Guest
Posts: n/a
 
      7th Sep 2007
It's the only way IF somebody has used VBA to make the sheet xlsheetveryhidden


"Kevin B" wrote:

> I wouldn't have thought of that, although I've done it in the past. Thanks
> for the heads up...
> --
> Kevin Backmann
>
>
> "Duke Carey" wrote:
>
> > press Alt-F11 to open the VBA editor (VBE)
> > press Ctrl-G to open the Immediate window at the bottom right of the screen
> > Paste in
> >
> > thisworkbook.Sheets("Items").visible = xlsheetvisible
> >
> > and press enter
> >
> > Alt-tab back to Excel
> >
> >
> >
> > "pablobandito" wrote:
> >
> > > I have a file that references another tab. I have done all the obvious
> > > things to be able to see other tabs; to no success.
> > >
> > > The formula is "=LOOKUP(Q4,Items!$A$3:$A$50,Items!$B$3:$B$50)"
> > >
> > > I know the tab is contained within this worksheet because the cell changes
> > > if I change the reference in the formula.
> > >
> > > I do not see the "Items" tab but I really need too. Does anyone have any
> > > suggestions.
> > >
> > >

 
Reply With Quote
 
=?Utf-8?B?cGFibG9iYW5kaXRv?=
Guest
Posts: n/a
 
      7th Sep 2007
Hey Duke,

Thanks, but that didn't work because in VBA I it shows it exists - but won't
allow me to view it.

In VBA - under the XLS file properties. It shows that this file has 6
Sheets, the first one is visible - the other 5 are "hidden" - when I try to
them "visible" I get an error message that says "Unable to set the Visible
property of the Worksheet class"

Any ideas????

Paul

"Duke Carey" wrote:

> press Alt-F11 to open the VBA editor (VBE)
> press Ctrl-G to open the Immediate window at the bottom right of the screen
> Paste in
>
> thisworkbook.Sheets("Items").visible = xlsheetvisible
>
> and press enter
>
> Alt-tab back to Excel
>
>
>
> "pablobandito" wrote:
>
> > I have a file that references another tab. I have done all the obvious
> > things to be able to see other tabs; to no success.
> >
> > The formula is "=LOOKUP(Q4,Items!$A$3:$A$50,Items!$B$3:$B$50)"
> >
> > I know the tab is contained within this worksheet because the cell changes
> > if I change the reference in the formula.
> >
> > I do not see the "Items" tab but I really need too. Does anyone have any
> > suggestions.
> >
> >

 
Reply With Quote
 
=?Utf-8?B?RHVrZSBDYXJleQ==?=
Guest
Posts: n/a
 
      7th Sep 2007
Did you try the code?

If that doesn't do it, you'll have to get somebody more knowledgeable than
me to guide you.

By the way, what do you mean "under the XLS file properties" Do you mean
you see the tree in the upper left corner with the bolded
VBAProject(filename) and all the worksheets below it?


"pablobandito" wrote:

> Hey Duke,
>
> Thanks, but that didn't work because in VBA I it shows it exists - but won't
> allow me to view it.
>
> In VBA - under the XLS file properties. It shows that this file has 6
> Sheets, the first one is visible - the other 5 are "hidden" - when I try to
> them "visible" I get an error message that says "Unable to set the Visible
> property of the Worksheet class"
>
> Any ideas????
>
> Paul
>
> "Duke Carey" wrote:
>
> > press Alt-F11 to open the VBA editor (VBE)
> > press Ctrl-G to open the Immediate window at the bottom right of the screen
> > Paste in
> >
> > thisworkbook.Sheets("Items").visible = xlsheetvisible
> >
> > and press enter
> >
> > Alt-tab back to Excel
> >
> >
> >
> > "pablobandito" wrote:
> >
> > > I have a file that references another tab. I have done all the obvious
> > > things to be able to see other tabs; to no success.
> > >
> > > The formula is "=LOOKUP(Q4,Items!$A$3:$A$50,Items!$B$3:$B$50)"
> > >
> > > I know the tab is contained within this worksheet because the cell changes
> > > if I change the reference in the formula.
> > >
> > > I do not see the "Items" tab but I really need too. Does anyone have any
> > > suggestions.
> > >
> > >

 
Reply With Quote
 
=?Utf-8?B?cGFibG9iYW5kaXRv?=
Guest
Posts: n/a
 
      7th Sep 2007
I got it to work - for some reason it wouldn't let me - then I closed the
file and reopened it and it let me - thanks for all your help!!!!!!!!!

"Duke Carey" wrote:

> Did you try the code?
>
> If that doesn't do it, you'll have to get somebody more knowledgeable than
> me to guide you.
>
> By the way, what do you mean "under the XLS file properties" Do you mean
> you see the tree in the upper left corner with the bolded
> VBAProject(filename) and all the worksheets below it?
>
>
> "pablobandito" wrote:
>
> > Hey Duke,
> >
> > Thanks, but that didn't work because in VBA I it shows it exists - but won't
> > allow me to view it.
> >
> > In VBA - under the XLS file properties. It shows that this file has 6
> > Sheets, the first one is visible - the other 5 are "hidden" - when I try to
> > them "visible" I get an error message that says "Unable to set the Visible
> > property of the Worksheet class"
> >
> > Any ideas????
> >
> > Paul
> >
> > "Duke Carey" wrote:
> >
> > > press Alt-F11 to open the VBA editor (VBE)
> > > press Ctrl-G to open the Immediate window at the bottom right of the screen
> > > Paste in
> > >
> > > thisworkbook.Sheets("Items").visible = xlsheetvisible
> > >
> > > and press enter
> > >
> > > Alt-tab back to Excel
> > >
> > >
> > >
> > > "pablobandito" wrote:
> > >
> > > > I have a file that references another tab. I have done all the obvious
> > > > things to be able to see other tabs; to no success.
> > > >
> > > > The formula is "=LOOKUP(Q4,Items!$A$3:$A$50,Items!$B$3:$B$50)"
> > > >
> > > > I know the tab is contained within this worksheet because the cell changes
> > > > if I change the reference in the formula.
> > > >
> > > > I do not see the "Items" tab but I really need too. Does anyone have any
> > > > suggestions.
> > > >
> > > >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
List referenced columns in formulas? Maury Markowitz Microsoft Excel Programming 2 6th Mar 2009 02:34 PM
How to get formulas starting from the referenced cells Dario Microsoft Excel Discussion 2 29th Aug 2007 09:40 AM
Extend data range formulas keeping one static cell referenced? =?Utf-8?B?TWVsaXNzYQ==?= Microsoft Excel Crashes 2 19th Aug 2006 02:54 PM
How to automatically change the referenced worksheet name in all formulas? steven.cole@gmail.com Microsoft Excel Programming 2 17th May 2005 02:33 PM
Problem Formulas Referenced to PivotTable Frank Turner Microsoft Excel Worksheet Functions 2 11th Aug 2003 11:41 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:04 AM.