+ Reply to Thread
Results 1 to 2 of 2

Paste Special Transpose

Hybrid View

  1. #1
    Brian
    Guest

    Paste Special Transpose

    Is there an easy way to combine the "Paste Link" and "Transpose" features of
    the Past Special command?

    For example, if

    A1 = 100
    A2 = 200
    A3 = 300

    in one command (or macro, setkey, etc) I'd like to past into cells B1:D1 the
    following:

    B1 = $A$1
    C1 = $A$2
    D1 = $A$3

    Thanks.

  2. #2
    Tom Ogilvy
    Guest

    Re: Paste Special Transpose

    Range("B1:D1").formula = "=OFFSET($A$1,COLUMN()-1,0)"
    Range(A1:A3").copy
    Range("B1:D1").Pastespecial xlFormats

    might be a work around.
    --
    Regards,
    Tom Ogilvy

    "Brian" <Brian@discussions.microsoft.com> wrote in message
    news:1666400D-78B2-467C-AAE7-9522A72545F5@microsoft.com...
    > Is there an easy way to combine the "Paste Link" and "Transpose" features

    of
    > the Past Special command?
    >
    > For example, if
    >
    > A1 = 100
    > A2 = 200
    > A3 = 300
    >
    > in one command (or macro, setkey, etc) I'd like to past into cells B1:D1

    the
    > following:
    >
    > B1 = $A$1
    > C1 = $A$2
    > D1 = $A$3
    >
    > Thanks.




+ 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