#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default FUNCTION

Had a question about maybe a function.... this is what i got

A B C
1 TIM MAY 16
2 WAYNE JUNE 12
3 ROB MARCH 24


and i was looking to make it like this

A B C
1 TIM WAYNE ROB
2 MAY JUNE MARCH
3 16 12 24

any suggestions?1?!?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 83
Default FUNCTION

On Sun, 16 May 2010 08:47:01 -0700, wilt
wrote:

Had a question about maybe a function.... this is what i got

A B C
1 TIM MAY 16
2 WAYNE JUNE 12
3 ROB MARCH 24


and i was looking to make it like this

A B C
1 TIM WAYNE ROB
2 MAY JUNE MARCH
3 16 12 24

any suggestions?1?!?


Select cells A1:C3
Right click anywhere inside the selection av choose "Copy".

Right click on an empty space and choose "Paste Special".
In the dialog that appears tich the "Transpose" checkbox and then
click on OK.

Your transposed data table can now be Cut and Paste to the original
location, i.e. cells A1:C3.

Hope this helps / Lars-Åke

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 834
Default FUNCTION

Try this

Dim NumRows As Long
Dim NumCols As Long

With ActiveSheet

NumRows = .Cells(.Rows.Count, "A").End(xlUp).Row
NumCols = .Cells(1, .Columns.Count).End(xlToLeft).Column
.Range("A1").Resize(NumRows, NumCols).Copy
.Range("A1").Offset(, NumCols).Resize(NumRows, NumCols).PasteSpecial
Transpose:=True
.Range("A1").Resize(, NumCols).EntireColumn.Delete
End With

--

HTH

Bob

"wilt" wrote in message
...
Had a question about maybe a function.... this is what i got

A B C
1 TIM MAY 16
2 WAYNE JUNE 12
3 ROB MARCH 24


and i was looking to make it like this

A B C
1 TIM WAYNE ROB
2 MAY JUNE MARCH
3 16 12 24

any suggestions?1?!?



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 524
Default FUNCTION

Sun, 16 May 2010 08:47:01 -0700 from wilt
:

Had a question about maybe a function.... this is what i got

A B C
1 TIM MAY 16
2 WAYNE JUNE 12
3 ROB MARCH 24


and i was looking to make it like this

A B C
1 TIM WAYNE ROB
2 MAY JUNE MARCH
3 16 12 24

any suggestions?1?!?


Look up "transpose" in Excel help.

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com
Shikata ga nai...
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
Excel Data Validation/Lookup function does function correcty Kirkey Excel Worksheet Functions 2 May 25th 09 09:22 PM
copy of excel file not showing formulal/function in the function b oaallam Excel Discussion (Misc queries) 4 September 6th 07 01:20 PM
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) [email protected] Excel Worksheet Functions 0 September 5th 06 03:44 PM
Offset function with nested match function not finding host ss. MKunert Excel Worksheet Functions 1 March 21st 06 10:46 PM
Emulate Index/Match combo function w/ VBA custom function Spencer Hutton Excel Worksheet Functions 2 May 2nd 05 05:26 PM


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