Clear Macro not working

Smurfit-Stone

Active Member
Joined
Dec 1, 2004
Messages
485
Can anyone tell me why this macro won't work. I get a message that reads "Expected list separator or )". What should I do? I'm running out of time. Thanks so much.

Sub Clear()
Range("Unit119,Unit122,Unit123,Unit128,Unit134, _
Unit135,Unit136,Unit142,Unit104,Unit120,UnitSlitter, _
UnitWet,UnitDry,Unit125").ClearContents
End Sub
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi there,

You are misusing your _ seperators.

Try:

Code:
Sub Clear()
    Range("Unit119,Unit122,Unit123,Unit128,Unit134," & _
    "Unit135,Unit136,Unit142,Unit104,Unit120,UnitSlitter," & _
    "UnitWet,UnitDry,Unit125").ClearContents
End Sub
 
Upvote 0
Try

Code:
Sub Clear()
Union(Range("Unit119"), Range("Unit122"), Range("Unit123"), Range("Unit128"), Range("Unit134"), _
Range("Unit135"), Range("Unit136"), Range("Unit142"), Range("Unit104"), Range("Unit120"), Range("UnitSlitter"), _
Range("UnitWet"), Range("UnitDry"), Range("Unit125")).ClearContents
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,555
Members
452,928
Latest member
101blockchains

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