Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Transposing numbers

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 66
Default Transposing numbers

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   Report Post  
Posted to microsoft.public.excel.programming
RWN RWN is offline
external usenet poster
 
Posts: 104
Default Transposing numbers

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Transposing numbers

As a simple code,


Code:
--------------------

[G9:G15] = Application.Transpose([G1:M1])

--------------------



---
Message posted from http://www.ExcelForum.com/

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
Transposing Nanapat Excel Discussion (Misc queries) 2 April 2nd 08 11:38 PM
Transposing list of numbers jlhcat New Users to Excel 2 February 6th 08 07:11 PM
Concatenating and transposing a row of numbers Colin Hayes Excel Worksheet Functions 14 July 15th 06 08:54 PM
transposing an array converts dates into numbers Mehmet Excel Worksheet Functions 3 April 21st 06 07:04 AM
TRANSPOSING GARY Excel Discussion (Misc queries) 1 March 17th 06 11:09 AM


All times are GMT +1. The time now is 03:53 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"