Divide a long string in a Cell, separated by commas

Henrik_DK

New Member
Joined
Aug 17, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi

I have long string of data in A1, this string contain letters, numbers and spaces BUT are divided with a comma.
I need for split it into max 800 characters, and the split should be after a comma, so we keep the unique name/number.

It would be helpful, if the new lines would be placed under the original "to long" line, and with a space in between, so first new line is in A3 and second in A5 etc.
The second line should not start with a comma, as that will conflict in the further process

Do anyone have a take on this ?

1660726950929.png


br Henrik
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Hi

I have long string of data in A1, this string contain letters, numbers and spaces BUT are divided with a comma.
I need for split it into max 800 characters, and the split should be after a comma, so we keep the unique name/number.

It would be helpful, if the new lines would be placed under the original "to long" line, and with a space in between, so first new line is in A3 and second in A5 etc.
The second line should not start with a comma, as that will conflict in the further process

Do anyone have a take on this ?

View attachment 71763

br Henrik

How should be structured the new string ? Does it keep commas and / or spaces within the 800 characters, or are they removed completly ?
 
Upvote 0
Welcome to the MrExcel board!

For the future, the following would help:
MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.


See if this smaller example puts you on the right path.

VBA Code:
Sub BreakItUp_Discard_Comma()
  Dim s As String
  Dim k As Long
  Dim result As Variant
 
  Const CharsPerLine As Long = 15     '<-Change to suit (eg 800)
  s = Range("A1").Text
  ReDim result(1 To Len(s), 1 To 1)
  k = 0
  Do Until Len(s) = 0
    k = k + 2
    result(k, 1) = RTrim(Left(s, InStrRev(s & "," & Space(CharsPerLine), ",", CharsPerLine + 1) - 1))
    s = Mid(s, Len(result(k, 1)) + 2)
  Loop
  With Range("A2").Resize(k)
    .NumberFormat = "@"
    .Value = result
  End With
End Sub

My sample data and results.

Henrik_DK.xlsm
A
120391,2373,29232,6052356,PT4553 9.6 CL,123,KK 12.23,456987,AB CD EFG,22,33,44,55,66,77,88,99
2
320391,2373
4
529232,6052356
6
7PT4553 9.6 CL
8
9123,KK 12.23
10
11456987
12
13AB CD EFG,22,33
14
1544,55,66,77,88
16
1799
Sheet3
 
Upvote 0
Solution
Welcome to the MrExcel board!

For the future, the following would help:
MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.


See if this smaller example puts you on the right path.

VBA Code:
Sub BreakItUp_Discard_Comma()
  Dim s As String
  Dim k As Long
  Dim result As Variant
 
  Const CharsPerLine As Long = 15     '<-Change to suit (eg 800)
  s = Range("A1").Text
  ReDim result(1 To Len(s), 1 To 1)
  k = 0
  Do Until Len(s) = 0
    k = k + 2
    result(k, 1) = RTrim(Left(s, InStrRev(s & "," & Space(CharsPerLine), ",", CharsPerLine + 1) - 1))
    s = Mid(s, Len(result(k, 1)) + 2)
  Loop
  With Range("A2").Resize(k)
    .NumberFormat = "@"
    .Value = result
  End With
End Sub

My sample data and results.

Henrik_DK.xlsm
A
120391,2373,29232,6052356,PT4553 9.6 CL,123,KK 12.23,456987,AB CD EFG,22,33,44,55,66,77,88,99
2
320391,2373
4
529232,6052356
6
7PT4553 9.6 CL
8
9123,KK 12.23
10
11456987
12
13AB CD EFG,22,33
14
1544,55,66,77,88
16
1799
Sheet3

Hi Peter - Thanks for your swift reply and perfect solution, I will look into those tools you have mentioned.
 
Upvote 0
You're welcome. Thanks for the follow-up. :)
 
Upvote 0

Forum statistics

Threads
1,214,650
Messages
6,120,736
Members
448,988
Latest member
BB_Unlv

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top