Clear content then assign value.

expeo

New Member
Joined
Dec 1, 2017
Messages
17
I created a maco (Clearcells), but I cannot seem to make it work.

It should clear the contents from cells W3:W5 in a different worksheet (Calls Data) and then assign W3 with the value of 1. I am missing something here. Also, how can I add the code to include to refresh a pivot table after the first 2 steps?


Code:
Sub Clearcells()
With Sheets("Calls Data")
.Range(.Cells(3, 23), .Cells(5, 23)).ClearContents
.Range.Cells(3, 23).Select
End With
Selection.Value = 1
End Sub
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
You can't select cells of an inactive sheet.

Is this what you're looking for?

Code:
Sub ClearCells()

With Sheets("Calls Data")
    .Range("W3:W5").ClearContents
    .Range("W3").Value = 1
End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,392
Messages
6,119,257
Members
448,880
Latest member
aveternik

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