Created
June 21, 2016 03:18
-
-
Save engalar/11471bd59ecab0a25a0d23ab552855f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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