Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() HELP PLEASE! I have a large excel spreadsheet. The layout is like this: A SDF ED B EFD BR C ERT RT How do I transpose everything using VB so they are in one column lik this: A SDF ED B EFD BR C ERT RT THANKS A LOT! -- sunj9 ----------------------------------------------------------------------- sunj99's Profile: http://www.excelforum.com/member.php...fo&userid=2393 View this thread: http://www.excelforum.com/showthread.php?threadid=37566 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Suppose your data occupies Cols A,B,C try: Sub TransposeThreeSome() num = Cells(Rows.Count, "A").End(xlUp).Row For i = 1 To num For j = 1 To 3 Cells([d65536].End(xlUp).Row + 1, "D") = Cells(i, j).Value Next Next Range("d2:d" & [d65536].End(xlUp).Row).Cut Range("d1") Columns("a:c").Delete End Su -- david ----------------------------------------------------------------------- davidm's Profile: http://www.excelforum.com/member.php...fo&userid=2064 View this thread: http://www.excelforum.com/showthread.php?threadid=37566 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SUMIF FUNCTION works in all cells but those related to one account | Excel Worksheet Functions | |||
related to error function | Excel Discussion (Misc queries) | |||
2 questions! Related to combobox and time function. HELP!! | Excel Discussion (Misc queries) | |||
HELP on TRANSPOSE related function. | Excel Programming | |||
Function Related Question | Excel Discussion (Misc queries) |