Hello,

I want to hide all worksheets which are listed in a table.
The list contains the sheet codenames (Sheet1, Sheet2, etc.).
The problem is to read the data in the list and convert the string to a sheet object.

The following code doesnt´t work:

For i = 63 To 96
numero = Worksheets("tablas macro").Cells(i, 1)
numero.Visible = False
Next i

The cells contain the codenames Sheet1, etc.
Any suggestion?

Thanks a lot