Skip to content

Instantly share code, notes, and snippets.

@eiryu
Created September 24, 2011 18:36
Show Gist options
  • Save eiryu/1239675 to your computer and use it in GitHub Desktop.
Save eiryu/1239675 to your computer and use it in GitHub Desktop.
VBAのSelection処理
Sub SelectionSamp()
Set rg = Selection
For Each e In rg
MsgBox e.Text
Next
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment