Skip to content

Instantly share code, notes, and snippets.

@yamatetsu0111
Last active November 22, 2020 06:01
Show Gist options
  • Save yamatetsu0111/d0a2b7cba2f2fc6b6d092eb7bbec9cd9 to your computer and use it in GitHub Desktop.
Save yamatetsu0111/d0a2b7cba2f2fc6b6d092eb7bbec9cd9 to your computer and use it in GitHub Desktop.
VBAのfindの基本的な使い方
Sub find()
Dim Target As Range
Set Target = Range("B:B").find(what:="りんご")
Debug.Print (Target.Address)
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment