Created
June 8, 2017 16:16
-
-
Save harsha547/3c256fc09d1e1ee576c844c020426a80 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 RemoveHeader() | |
| Dim rg As Range | |
| Set rg = shTransactions.Range("B3").CurrentRegion | |
| Dim rgNew As Range | |
| Set rgNew = rg.Resize(rg.Rows.Count-1).Offset(1) | |
| Dim i As Long | |
| For i = 2 To rg.rows.count | |
| Debug.Print rg.cells(i,5).Value | |
| Next i | |
| End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment