Can any one please tell me how to i hide the sheets?Thanks,
YesSheets("sheet1").Visible = False
In Excel, you can use the menu with Format...Sheet...Hide. (it willhide the open sheet).In VBA you can use this, assuming you want to hide Sheet2:Sheets("Sheet2").Visible = False