+ Reply to Thread
Results 1 to 4 of 4

Easier Way to do it?

  1. #1
    Kurt Barr
    Guest

    Easier Way to do it?

    Is there an easier or more logical way to write this code?

    Sheets("Form Data").Range("C3").Copy
    Sheets("New Deal Data").Range("AA5").PasteSpecial
    Paste:=xlPasteFormulas, Operation:=xlNone, _
    SkipBlanks:=False, Transpose:=False


  2. #2
    Bob Phillips
    Guest

    Re: Easier Way to do it?

    Sheets("Form Data").Range("C3").Copy _
    Sheets("New Deal Data").Range("AA5")

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "Kurt Barr" <[email protected]> wrote in message
    news:[email protected]...
    > Is there an easier or more logical way to write this code?
    >
    > Sheets("Form Data").Range("C3").Copy
    > Sheets("New Deal Data").Range("AA5").PasteSpecial
    > Paste:=xlPasteFormulas, Operation:=xlNone, _
    > SkipBlanks:=False, Transpose:=False
    >




  3. #3
    Yngve
    Guest

    Re: Easier Way to do it?

    Hi Kurt Barr

    If you are going to keep Paste:=xlPasteFormulas

    Sheets("Form Data").Range("C3").Copy
    Sheets("New Deal Data").Range("AA5").PasteSpecial
    Paste:=xlPasteFormulas

    if it`s only value then
    Sheets("New Deal Data").Range("AA5") = _
    Sheets("Form Data").Range("C3").value

    Regards Yngve


  4. #4
    Kurt Barr
    Guest

    Re: Easier Way to do it?

    Thank you very much.

    "Yngve" wrote:

    > Hi Kurt Barr
    >
    > If you are going to keep Paste:=xlPasteFormulas
    >
    > Sheets("Form Data").Range("C3").Copy
    > Sheets("New Deal Data").Range("AA5").PasteSpecial
    > Paste:=xlPasteFormulas
    >
    > if it`s only value then
    > Sheets("New Deal Data").Range("AA5") = _
    > Sheets("Form Data").Range("C3").value
    >
    > Regards Yngve
    >
    >


+ 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