xlVeryHidden

  • Thread starter Thread starter jacqui
  • Start date Start date
J

jacqui

Sorry bit of a basic question this...
If I set my Worksheet Visible property to xlVeryHidden so
that users cannot unhide it, am I still able to access
data on the worksheet through code? If so do I access the
information in much the same way as I usually would ie if
I have a number in cell A1 and the sheet is xlVeryHidden
is the syntax Range("A1").select still recognised.
Many thanks
Jacqui
 
Yes

Sub foo() ' Subroutine name credits to Fran
Worksheets("Sheet1").Visible = xlVeryHidde
Worksheets("Sheet1").Activat
Range("A1").Selec

MsgBox ActiveCell.Valu
End Su

-Brad
 

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

Similar Threads


Back
Top