H
Howard
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 andnow 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
A few minutes ago I tried to use it on comma delimited stuff in cell B1 andnow 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