+ Reply to Thread
Results 1 to 3 of 3

Paste Special - copy everything except formulas

  1. #1
    VishalBade
    Guest

    Paste Special - copy everything except formulas

    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

  2. #2
    Tom Ogilvy
    Guest

    RE: Paste Special - copy everything except formulas

    selection.Copy
    With Worksheets("SheetOther").Range("A1")
    .PasteSpecial xlValues
    .PasteSpecial xlFormats
    End With

    --
    Regards,
    Tom Ogilvy


    "VishalBade" wrote:

    > 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


  3. #3
    VishalBade
    Guest

    RE: Paste Special - copy everything except formulas

    Thanks Very much It worked out.

    "Tom Ogilvy" wrote:

    > selection.Copy
    > With Worksheets("SheetOther").Range("A1")
    > .PasteSpecial xlValues
    > .PasteSpecial xlFormats
    > End With
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    >
    > "VishalBade" wrote:
    >
    > > 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


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1