J Jan Karel Pieterse Mar 26, 2004 #2 Hi Kvenku, Can i hide a sheet1 throught VBA coding Click to expand... Workbooks("Yourbook.xls").Worksheets("Sheet1").Visible=False Regards, Jan Karel Pieterse Excel MVP www.jkp-ads.com
Hi Kvenku, Can i hide a sheet1 throught VBA coding Click to expand... Workbooks("Yourbook.xls").Worksheets("Sheet1").Visible=False Regards, Jan Karel Pieterse Excel MVP www.jkp-ads.com
B Bob Phillips Mar 26, 2004 #3 Hi Venkatesh, Activesheet.Visible = xlHidden 'xlVisible restores it -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct)
Hi Venkatesh, Activesheet.Visible = xlHidden 'xlVisible restores it -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct)
V Vasant Nanavati Mar 26, 2004 #4 Of course, you can't hide it if it's the only sheet in the workbook.
H Harald Staff Mar 26, 2004 #5 Vasant Nanavati said: Of course, you can't hide it if it's the only sheet in the workbook. Click to expand... Through VBA coding ? Sub SheetsGone() ThisWorkbook.IsAddin = True End Sub ;-) Best wishes Harald
Vasant Nanavati said: Of course, you can't hide it if it's the only sheet in the workbook. Click to expand... Through VBA coding ? Sub SheetsGone() ThisWorkbook.IsAddin = True End Sub ;-) Best wishes Harald
S Steve Garman Mar 27, 2004 #6 You can make it a lot less visible, though <g> With Workbooks("Book1").Worksheets("Sheet1") .Rows.Hidden = True .Columns.Hidden = True End With
You can make it a lot less visible, though <g> With Workbooks("Book1").Worksheets("Sheet1") .Rows.Hidden = True .Columns.Hidden = True End With