Você pode usar o código abaixo para iterar sobre todas as células visíveis.
Sub SomenteVisiveis()
Dim rngVisivel As Range, cell As Range
Set rngVisivel = Range("A1").CurrentRegion.SpecialCells(xlCellTypeVisible)
For Each cell In rngVisivel
' Seu código
MsgBox cell.Value
Next
End Sub
Ou uma coluna específica, no caso a coluna 1.
Set rngVisivel = Columns(1).SpecialCells(xlCellTypeVisible)