Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
In cells G1:M1, I can enter a range of numbers. Some cells will be empty. How can I copy this range to G9:G15 Thankyou |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Straight from the Macro Recorder:
Sub Transpose() Range("G1:M1").Select Selection.Copy Range("G9").Select Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks:=False _ , Transpose:=True End Sub SuperJas. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Select and copy G1-M1
Select G9 Paste-Special Select the "Transpose" option (lower right) and click "OK" -- Regards; Rob ------------------------------------------------------------------------ " wrote in message ... Hi, In cells G1:M1, I can enter a range of numbers. Some cells will be empty. How can I copy this range to G9:G15 Thankyou |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
As a simple code,
Code: -------------------- [G9:G15] = Application.Transpose([G1:M1]) -------------------- --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Transposing | Excel Discussion (Misc queries) | |||
Transposing list of numbers | New Users to Excel | |||
Concatenating and transposing a row of numbers | Excel Worksheet Functions | |||
transposing an array converts dates into numbers | Excel Worksheet Functions | |||
TRANSPOSING | Excel Discussion (Misc queries) |