Hi, barqujo,
from what I understand you may have a go with this, the numbers are located in Sheet1 starting with A1 downwards with no blanks:
Sub EF938706()
Dim ws1 As Worksheet
Dim ws2 As Worksheet
Dim lngCounter As Long
Set ws1 = Sheets("Sheet1")
Set ws2 = Sheets("Sheet2")
ws2.Rows("1:50").Hidden = True
With ws1
For lngCounter = 1 To .Cells(Rows.Count, "A").End(xlUp).Row
ws2.Rows(.Cells(lngCounter, "A").Value).Hidden = False
Next lngCounter
End With
Set ws2 = Nothing
Set ws1 = Nothing
End Sub
Ciao,
Holger
Bookmarks