CC
Which version of Excel do you have that has a "Clear Columns" option when
protecting a sheet?
2002 and 2003 do not have this option.
In any case, you will have to unprotect the sheet to have F5>Special
available.
You could do the whole thing using a macro if you wish to venture into that.
Sub Macro1()
ActiveSheet.Unprotect Password:="justme" 'your PWord
Cells.Select
'if just want one column use Columns("A:A").Select
Selection.SpecialCells(xlCellTypeConstants, 1).Select
Selection.ClearContents
ActiveSheet.Protect Password:="justme", DrawingObjects:=True, _
Contents:=True, Scenarios:=True
End Sub
This code unprotects the sheet, selects all cells then selects numerics cells
only and clears those then re-protects the sheet.
Gord