Hello people,
I have made following code,
this is a very easy loop that loops all used cells in active sheet.
How can I make the loop ignore hidden columns?Code:
Sub test()
For x = 1 To ActiveSheet.UsedRange.SpecialCells(xlCellTypeLastCell).Row
' put some code here.
Next x
End Sub
Thank you in advance