excel rows--Hide or Unhide from Access

  • Thread starter Thread starter Gerry Goldberg
  • Start date Start date
G

Gerry Goldberg

Using VBA to operate on an Excel spreadsheet from Access, I need to hide
(or unhide) a range of rows. How can I do this? Also, is there a good
reference available that tells me what the Excel properties and methods are
for a spread sheet?

Thanks,

Gerry Goldberg
 
Worksheets("Sheet1").Columns("C").Hidden = True

Taken directly from VB Help after looking around in the objects library in
Access.
 
Back
Top