Hello all,
I am using the below code
It working fine but I need to clear only numbers from the whole workgroup at column D. I replaced ActiveSheet with ActiveWorkgroup but now luck.
Please help.
Thank you
I am using the below code
VBA Code:
Sub ClearContentsPCA()
On Error Resume Next
ActiveSheet.Columns("D").SpecialCells(xlCellTypeConstants, xlNumbers).ClearContents
On Error GoTo 0
End Sub
It working fine but I need to clear only numbers from the whole workgroup at column D. I replaced ActiveSheet with ActiveWorkgroup but now luck.
Please help.
Thank you