シートの存在チェック
Function SheetExists(SheetName As String)
Dim ws
For Each ws In Worksheets
If ws.Name = SheetName Then SheetExists = True: Exit Function
Next
End Function
Go to list of users who liked
More than 5 years have passed since last update.
Function SheetExists(SheetName As String)
Dim ws
For Each ws In Worksheets
If ws.Name = SheetName Then SheetExists = True: Exit Function
Next
End Function
Register as a new user and use Qiita more conveniently
Go to list of users who liked