Skip to content

Instantly share code, notes, and snippets.

@engalar
Created June 21, 2016 03:18
Show Gist options
  • Save engalar/11471bd59ecab0a25a0d23ab552855f8 to your computer and use it in GitHub Desktop.
Save engalar/11471bd59ecab0a25a0d23ab552855f8 to your computer and use it in GitHub Desktop.
Sub lab()
For Each col In ActiveSheet.UsedRange
For Each c In col
If c.Row > 4 And c.Column > 3 Then
Debug.Print c
low = ActiveSheet.Cells(3, c.Column)
Height = ActiveSheet.Cells(4, c.Column)
End If
Next
'Debug.Print c.Value2(5, 1)
Next
'For Each c In Application.Selection
'Debug.Print c
'Next
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment