Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
advanced paste special transpose | Excel Discussion (Misc queries) | |||
Transpose, Paste Special | Excel Discussion (Misc queries) | |||
Paste Special / transpose | Excel Discussion (Misc queries) | |||
When I special paste and transpose.... | New Users to Excel | |||
Need help with Transpose paste special | Excel Programming |