Reference One Sheet on clear data Sub

Simplemountain

New Member
Joined
Feb 26, 2016
Messages
27
Hello,

I have a sheet I've been working on for some time that is a work sheet for pricing quotes.

I lock all the cells on the sheet except the ones needed to input data to keep all of my formulas safe. I added a clear Sheet button using code I got from this forum so that users could easily clear the sheet without affecting locked cells. Here is the code:


Sub ClearUnlockedCells()

Dim wks As Worksheet

For Each wks In ThisWorkbook.Field
On Error Resume Next
wks.UsedRange.Value = vbNullString
Err.Clear: On Error GoTo -1: On Error GoTo 0
Next wks

Set wks = Nothing

End Sub

This button works perfectly. I've realized now that I want to be able to allow users to change the value of certain cells for hourly rates. In order to keep my formulas intact, I created a second sheet in the Workbook where the rates can be entered and then set the applicable cells in the first sheet equal to them.

Now however, when I hit the clear sheet button, it clears the second sheet as well. Can someone advise on how I can change the code above to only clear the active sheet or some other solution? I've been experimenting but am missing something simple.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi,
if you only want to clear cell constants in a specific sheet try this change to your code

Rich (BB code):
Sub ClearUnlockedCells()
On Error Resume Next
    Sheets("Sheet1").UsedRange.Cells.SpecialCells(xlCellTypeConstants).ClearContents
On Error GoTo 0
End Sub

Change the sheet name shown in RED as required.

Updated code uses the Range.SpecialCells method to clear constants (numbers & text) only from the range & should leave any cells containing formulas intact.

Dave
 
Upvote 0
Thank you for the response Dave!

There are many cells on my sheet that contain numbers and text that I would like to also keep the same. I tried your code above to see if I could work it in but it is not clearing anything. Do I need to define a range?

I was hoping there might be an easy way to use the code I had but limit the range to only the one sheet.
 
Upvote 0
hi,
should work ok - did you change the sheet name to correct sheet? also, is your sheet protected?

Dave
 
Upvote 0
yes, sheet is protected. I did change the name. Will the protection block the code?

code will likely error but as there is an On error trap won't display the error.

You can modify code to allow for sheet protection

Code:
Sub ClearUnlockedCells()
On Error Resume Next
    With Sheets("Sheet1")
        .Unprotect Password:=""
        .UsedRange.Cells.SpecialCells(xlCellTypeConstants).ClearContents
        .Protect Password:=""
    End With
On Error GoTo 0
End Sub

add password as required

Dave
 
Upvote 0
Sorry, I was referring to adjusting the original code.

I pasted your code in as follows:
Sub ClearUnlockedCells()
On Error Resume Next
Sheets("Quote Work Up Sheet").UsedRange.Cells.SpecialCells(xlCellTypeConstants).ClearContents
On Error GoTo 0
End Sub

There seems to be some issues with it being saved in compatibility mode at some point.
 
Upvote 0
Thank you Dave,

That last code works perfectly and as expected.

Unfortunately, it also clears several cells that I have Text and numbers in that I would like to keep as well.

Is there some way to exclude or apply this code only to specific ranges?
 
Upvote 0

Forum statistics

Threads
1,216,099
Messages
6,128,813
Members
449,469
Latest member
Kingwi11y

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top