Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I arcived this code from this forum, I believe. The original data in a single cell was delimited by a / and this code transposed the cell contents from B1 to a list in column A, sans the /. I substituted a comma for the / and it worked just fine on my test cell.
A few minutes ago I tried to use it on comma delimited stuff in cell B1 and now all I get is a long string of commas... ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, etc, in cell B1, nothing in column A. Anybody know what the heck is going on. Excel 2010 and code is in Sheet1 module. Option Explicit Sub SuperTranspose() Range("B1") = Join(Application.Transpose(Range(Range("A1"), _ Range("A1").End(xlDown))), ", ") '" / ") End Sub Regards, Howard |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Transpose | Excel Worksheet Functions | |||
like a transpose | Excel Programming | |||
Copying with transpose and VB code | Excel Discussion (Misc queries) | |||
Multi Line Transpose Excel VBA code | Excel Programming | |||
I WANT TO TRANSPOSE LINKS, AS WE TRANSPOSE VALUES | Excel Worksheet Functions |