Hi,
i wanted to ask a macro to delete the a worksheet in a workbook, but only if it starts by "RoughData_139190_".
Here is what i thought would work :
i wanted to ask a macro to delete the a worksheet in a workbook, but only if it starts by "RoughData_139190_".
Here is what i thought would work :
Code:
' Delete orignial sheet
Application.DisplayAlerts = False
Worksheets("RoughData_139190_*").Delete
Application.DisplayAlerts = True