Thread
:
Delete range on open
View Single Post
#
2
Posted to microsoft.public.excel.programming
Brian Taylor
external usenet poster
Posts: 52
Delete range on open
You want the left function.
Dim WS As Worksheet
For Each WS In Worksheets
If left(WS.Name,2) = "ZZ" Then
Range("j29:q38").ClearContents
End If
Next
Reply With Quote
Brian Taylor
View Public Profile
Find all posts by Brian Taylor