How to clear multiple cells of input data in Excel simultaneou
sstea -
Change the line of code that reads
c.Value = ""
to
c..clearcontents
"sstea" wrote:
Thanks Corey
You rock man
"Corey" wrote:
Use this code
Dim c As Range
For Each c In Sheets("SHEET NAME HERE").UsedRange
If c.Locked = False Then
c.Value = ""
End If
Next
It will delete ALL cells values not locked in sheet selected
Corey....
"sstea" wrote in message
...
Yes, that is exactly what I want to do.
"Corey" wrote:
Does it mean to clear ALL cells in the sheet that are Not Locked ?
"sstea" wrote in message
...
I have a data input form in Excel where users enter values into unprotected
cells and view the result in a protected cell. I want the users to be able to
click a "button" to clear all of the previously entered cell input values simultaniously.
|