Created
December 11, 2013 02:09
-
-
Save siguremon/7904067 to your computer and use it in GitHub Desktop.
データがある範囲を抽出する ref: http://qiita.com/siguremon/items/4fbdb2585b74fa9e8701
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
Dim lastRow As Long | |
Dim varData As Variant | |
lastRow = Range("A" & Rows.Count).End(xlUp).Row | |
varData = Range("A1:A" & lastRow).value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment