remove dates and shapes
Posted: Fri May 28, 2021 5:35 pm
Hi Dear,
I have written a code to delete signatures for all sheets and it works fine but I want to ask for your help how to delete cell contents with dates in all sheets.
Best Wishes,
I have written a code to delete signatures for all sheets and it works fine but I want to ask for your help how to delete cell contents with dates in all sheets.
Code: Select all
Sub DeletePics()
Dim sht As Worksheet
Application.ScreenUpdating=False
For Each sht In ThisWorkbook.Worksheets
sht.Activate
ActiveSheet.DrawingObjects.Delete
Next sht
End Sub