Skip to content

Instantly share code, notes, and snippets.

@ganesh092929
Created December 25, 2017 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ganesh092929/eef27979e7873591c5ac84128dd2f1f8 to your computer and use it in GitHub Desktop.
Save ganesh092929/eef27979e7873591c5ac84128dd2f1f8 to your computer and use it in GitHub Desktop.
Sub AllRowValues()
lastRow = Cells(Rows.Count, 1).End(xlUp).Row
For i = 1 To lastRow
Debug.Print Cells(i, 1).Value
Next i
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment