Created
May 17, 2012 06:50
-
-
Save nappa7878/2717071 to your computer and use it in GitHub Desktop.
Google 短縮URL API で複数のURLを一括返還するEXCELマクロ
This file contains 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
Public Sub Sample() | |
Dim i As Integer | |
i = 1 | |
Do | |
Cells(i, 10) = GetShortenedLinkGoogl(Cells(i, 1)) | |
i = i + 1 | |
Loop Until Cells(i, 1) = "" | |
End Sub | |
http://www.ka-net.org/office/of38.htmlを参照 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment