I tried replacing [VBA]
Sub UnhideSheets()[/VBA]
frmUnhideSheets.Show
End Sub
With
[VBA]
Private Sub UserForm_Initialize()[/VBA]
cmdOK.Enabled = True
lbSheets.List = Array("Sheet1", "Sheet2")
End Sub
But it is telling me it cannot find macro!
little lost here.
But I do want to show only certain sheets say sheet 1 & 2 out of the 5
Thanks for the your help.