How to hide xls worksheet tabs (Vista)

N

Niek Otten

Office button (Top left)>Excel Options>Advanced, see section Display options
for this workbook>uncheck Show sheet tabs
 
P

Per Jessen

Hi

Worksheets("Sheet2").Visible = False

Or

Worksheets("Sheet2").Visible = xlVeryHidden

With the last solution, the user can't make it visible. Thus the only way is
to set .visible=true

Regards,
Per
 
A

Arno

Thank you so much Niek ! Arno

Niek Otten said:
Office button (Top left)>Excel Options>Advanced, see section Display options
for this workbook>uncheck Show sheet tabs


--
Kind regards,

Niek Otten
Microsoft MVP - Excel
 
Top