Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 683
Default 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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default 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" wrote in message
...
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
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
advanced paste special transpose Matt Excel Discussion (Misc queries) 2 December 10th 07 06:27 PM
Transpose, Paste Special idgity Excel Discussion (Misc queries) 2 September 6th 07 06:04 PM
Paste Special / transpose Ron Carr Excel Discussion (Misc queries) 2 February 24th 06 06:13 PM
When I special paste and transpose.... sml New Users to Excel 4 January 12th 06 12:49 AM
Need help with Transpose paste special Paul Excel Programming 4 December 5th 04 10:00 PM


All times are GMT +1. The time now is 08:08 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"