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?
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