Created
March 4, 2013 06:16
-
-
Save aoi0308/5080316 to your computer and use it in GitHub Desktop.
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
Attribute VB_Name = "Module1" | |
Sub Clear() | |
Dim wsCurrent As Worksheet | |
For Each wsCurrent In ThisWorkbook.Worksheets | |
wsCurrent.Range("xy").Value = "foo" | |
Next | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment