Skip to content

Instantly share code, notes, and snippets.

@nappa7878
Created May 17, 2012 06:50
Show Gist options
  • Save nappa7878/2717071 to your computer and use it in GitHub Desktop.
Save nappa7878/2717071 to your computer and use it in GitHub Desktop.
Google 短縮URL API で複数のURLを一括返還するEXCELマクロ
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