Convert values in 1 cell to rows
Closed
abhishek643
Posts
3
Registration date
Thursday 25 September 2014
Status
Member
Last seen
26 September 2014
-
25 Sep 2014 à 10:03
TrowaD Posts 2921 Registration date Sunday 12 September 2010 Status Contributor Last seen 27 December 2022 - 29 Sep 2014 à 12:01
TrowaD Posts 2921 Registration date Sunday 12 September 2010 Status Contributor Last seen 27 December 2022 - 29 Sep 2014 à 12:01
Related:
- Free youtube to mp3 converter v 4.1 48
- Youtube to mp3 converter download - Download - Music downloads
- Iwisoft free video converter - Download - Video converters
- Mp3 rocket - Download - Music downloads
- M3u to mp3 converter - Guide
- Koyote free video converter - Download - Video converters
4 responses
TrowaD
Posts
2921
Registration date
Sunday 12 September 2010
Status
Contributor
Last seen
27 December 2022
555
25 Sep 2014 à 11:20
25 Sep 2014 à 11:20
Hi Abhishek643,
You can use the text delimiter, using "," as separator, to spread you data over columns.
Then select and copy your data. Now use PasteSpecial with the Transpose option checked to spread your data across rows.
Best regards,
Trowa
You can use the text delimiter, using "," as separator, to spread you data over columns.
Then select and copy your data. Now use PasteSpecial with the Transpose option checked to spread your data across rows.
Best regards,
Trowa
abhishek643
Posts
3
Registration date
Thursday 25 September 2014
Status
Member
Last seen
26 September 2014
26 Sep 2014 à 14:53
26 Sep 2014 à 14:53
Hi,
Thanks for the reply. currently i am manually doing it. in all the cells no of values are different so i have to first check how many values are there and insert new rows. And same process i have to follow for all the cells in workbook.
if there is any macro which can identify no values and as per the insert rows then manual work will be reduced.
Thanks for the reply. currently i am manually doing it. in all the cells no of values are different so i have to first check how many values are there and insert new rows. And same process i have to follow for all the cells in workbook.
if there is any macro which can identify no values and as per the insert rows then manual work will be reduced.
abhishek643
Posts
3
Registration date
Thursday 25 September 2014
Status
Member
Last seen
26 September 2014
26 Sep 2014 à 15:34
26 Sep 2014 à 15:34
Hi,
i have got an macro which will covert cell value to into columns.
now i want macro for below
below are the values in columns.
1 2 3 4 5 6
2 3 4 5 6 7
i want outputs as below.
1
2
3
4
5
6
2
3
4
5
6
7
Thanks,
i have got an macro which will covert cell value to into columns.
now i want macro for below
below are the values in columns.
1 2 3 4 5 6
2 3 4 5 6 7
i want outputs as below.
1
2
3
4
5
6
2
3
4
5
6
7
Thanks,
TrowaD
Posts
2921
Registration date
Sunday 12 September 2010
Status
Contributor
Last seen
27 December 2022
555
29 Sep 2014 à 12:01
29 Sep 2014 à 12:01
Hi Abhishek643,
See if the following code yields the desired results:
Best regards,
Trowa
See if the following code yields the desired results:
Sub RunMe()
Dim x, y, z As Long
x = 1
y = 2
z = 2
Do
Cells(x, y).Cut
Range("A" & z).Insert Shift:=xlDown
y = y + 1
z = z + 1
If IsEmpty(Cells(x, y)) = True Then
x = x + 1
y = 2
z = z + 1
End If
Loop Until IsEmpty(Cells(x, y))
End Sub
Best regards,
Trowa