Paste Special - copy everything except formulas

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two excel sheets, One sheet is where i do all calculations, have
formulas defined and have conditional formatting defined. But when i copy to
the other excel i just dont need to copy formulas, except formulas I need to
copy values and special formats.

How do i do that. I have tried pastespecial - xlPasteValuesAndNumberFormats,
but it does not carry forward conditional formatting.

thanks in Advance
 
selection.Copy
With Worksheets("SheetOther").Range("A1")
.PasteSpecial xlValues
.PasteSpecial xlFormats
End With
 
Thanks Very much It worked out.

Tom Ogilvy said:
selection.Copy
With Worksheets("SheetOther").Range("A1")
.PasteSpecial xlValues
.PasteSpecial xlFormats
End With
 
Back
Top