View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default Reference Range across Worksheets

Try

Sheets("Data").Range("Discounts").ClearContents

If this post helps click Yes
---------------
Jacob Skaria


"BJ" wrote:

In MS Excel Objects Sheet1 (Input) I have the following:

Private Sub CommandButton1_Click()
Sheets("Data").Range("Discounts").Select
Selection.ClearContents
End Sub

Basically I am attempting to select and clear a named range within another
worksheet. I'm getting '1004' error so obviously I'm not calling this
correctly.

Any thoughts? I'm not locked into this format - just my goal of clearing
that named range via the button click from the 'Input' worksheet.

Thanks.