Forum home » Delegate support and help forum » Microsoft Excel VBA Training and help » New Worksheets
New Worksheets
Resolved · Low Priority · Version 2007
Soyful has attended:
Excel VBA Intro Intermediate course
New Worksheets
When you have a number of worksheets in a workbook, can you hide the worksheets, (columns and rows) and then navigate between the worksheets? Do you have to do this in VBA or do you have to create hyperlinks in normal excel mode?
For upcoming training course dates see: Pricing & availability
RE: New Worksheets
Hi Soyful
If you hide Columns or Rows on a Worksheet you can still reference the hidden data using VBA.
So if you have hidden column "D" in your worksheet you can refer to a cell in that column eg:
Msgbox Sheets("Accounts").Range("D3").Value
will display the value in that cell on a message box
Hope this helps
Carlos
Wed 15 Apr 2009: Automatically marked as resolved.
|
