Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I've already done the text to columns wizard, but I don't know how to make
all of my names be vertical instead of horizontal. Help! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Please tell me what you are trying to do. Are you trying to convert a column
or row of just names or is other information also listed. Please give more detail of what your trying to do, and results wanted. Thanks "Jen711" wrote: I've already done the text to columns wizard, but I don't know how to make all of my names be vertical instead of horizontal. Help! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I cut and pasted 80+ names onto an excel spreadsheet, but they all went into
a single cell. I was able to seperate all of the names into cells, but now there 80+ columns. I would would like all of the names in one column. Does that make sense? "danielocope" wrote: Please tell me what you are trying to do. Are you trying to convert a column or row of just names or is other information also listed. Please give more detail of what your trying to do, and results wanted. Thanks "Jen711" wrote: I've already done the text to columns wizard, but I don't know how to make all of my names be vertical instead of horizontal. Help! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Select and copy the horiz range. Then just right-click elsewhere on say, the
top cell of an empty col paste special transpose -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "Jen711" wrote: I cut and pasted 80+ names onto an excel spreadsheet, but they all went into a single cell. I was able to seperate all of the names into cells, but now there 80+ columns. I would would like all of the names in one column. Does that make sense? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming the data is in row 1
After breaking into single cells in 80 columns select the 80 cells and Copy then selct a single cell out of that range, say A2, then EditPaste SpecialTransposeOKEsc. Delete the original data. Gord Dibben MS Excel MVP On Fri, 8 Dec 2006 08:10:01 -0800, Jen711 wrote: I cut and pasted 80+ names onto an excel spreadsheet, but they all went into a single cell. I was able to seperate all of the names into cells, but now there 80+ columns. I would would like all of the names in one column. Does that make sense? "danielocope" wrote: Please tell me what you are trying to do. Are you trying to convert a column or row of just names or is other information also listed. Please give more detail of what your trying to do, and results wanted. Thanks "Jen711" wrote: I've already done the text to columns wizard, but I don't know how to make all of my names be vertical instead of horizontal. Help! |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
OOPs forgot to post the macro, sorry
Sub TextToColumns() ' ' TextToColumns ' Macro recorded 12/8/2006 by Dan ' Application.CutCopyMode = False Selection.TextToColumns Destination:=Range("A1"), DataType:=xlFixedWidth, _ TrailingMinusNumbers:=True Rows("1:1").Select Selection.Copy Range("A2").Select Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=True Rows("1:1").Select Application.CutCopyMode = False Selection.Delete Shift:=xlUp End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to convert a month to a quarter ...... | New Users to Excel | |||
Aligning Wraped Text to the bottom of a cell | Excel Discussion (Misc queries) | |||
Conversion to Text file format error | Excel Discussion (Misc queries) | |||
text spilling over text and colums | Excel Discussion (Misc queries) | |||
Read Text File into Excel Using VBA | Excel Discussion (Misc queries) |