Ok, here is my problem…
I am trying to copy from a single cell from worksheet1 and place it in a merged cell in worksheet2. I don’t want to have the borders copy over just the values but I always get error about the cells not being the right size. I have also tried PasteSpecial and have it paste everything but the borders but the just breaks down the merged cell when it is pasting so I can’t use that. I guess the question is does anybody have any ideas on how to copy from a single cell to a merged cell without keeping borders or breaking the merged cell apart?
Here is a piece of what I am trying to do but I just can’t get the formatting correct.
Worksheets("Master"
.Cells(counter, 8).Copy
Worksheets("RCCA"
.Range("G16:I16"
.PasteSpecial (xlPasteAllExceptBorders)
Thanks in advance.
I am trying to copy from a single cell from worksheet1 and place it in a merged cell in worksheet2. I don’t want to have the borders copy over just the values but I always get error about the cells not being the right size. I have also tried PasteSpecial and have it paste everything but the borders but the just breaks down the merged cell when it is pasting so I can’t use that. I guess the question is does anybody have any ideas on how to copy from a single cell to a merged cell without keeping borders or breaking the merged cell apart?
Here is a piece of what I am trying to do but I just can’t get the formatting correct.
Worksheets("Master"
Worksheets("RCCA"
Thanks in advance.