View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_3_] Dave Peterson[_3_] is offline
external usenet poster
 
Posts: 2,824
Default Clearing a merged cell

I like Bob's method better, but this works, too:

Worksheets("Sheetname").Range("Rangename").Value = ""



Jon Omar wrote:

I'm writing a macro that needs to clear the contents of a merged cell.
I've given the cell (range) a name but when i try to execute the
statement;

Sheets("Sheetname").Range("Rangename").ClearConten ts

I get errormessage;

Cannot change a part of a merged cell.

I've tried naming the cell before and after merging with the same
restults. Help would be very much appreciated.

Jon Omar


--

Dave Peterson