Split cell with Carriage returns, then loop code for only specific sheets

DK643

New Member
Joined
Feb 1, 2022
Messages
8
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
Hi,
I need some help adding a loop to an existing code and can't figure it out. Newbie here.

Current: I have a single cell (a9), that has hundreds of results. Each result has a carriage return after it. I need each result to be split out having their own row.
The current code basically does a text to columns and then a transposes the data in column A starting with cell A9.

Requested help:
1. I would like to have this code to loop and execute on specific sheets only. (in particular sheets 11-18)
2. Instead of the resulting data starting in A9, I would like the resulting data to start in G1, or a cell on a summary sheet.
3. Finally, it would be nice if the result removed the blank rows between the earnings.
CellData
A9Earning 1

Earning 2

Earning 3


Any help you could provide would be wonderful. Thank you!!

D

Code that doesn't work today: It breaks at sh.[a9] because I don't know what to do at that point.

Sub Loopforselectsheetsonly()
Dim sh As Worksheet
For Each sh In Sheets
' This starts the VBA loop to execute the VBA split only on assigned Sheets
Select Case sh.Name
Case Is = "Sheet11", "Sheet12", "Sheet13"
sh.[a9].
'Not sure what this does. Need this to execute on the below code, then loop back and do it on all assigned sheets.
End Select
Next sh
End Sub

Sub Splitcelldatawithcarriagereturn()
'VBA code to split out cell that has countless data with carriage returns
'Separates on carriage return, then transposes data. Result = vertical list
Dim Rng As Range
Dim WorkRng As Range
On Error Resume Next
Set WorkRng = Range("a9")
For Each Rng In WorkRng
lLFs = VBA.Len(Rng) - VBA.Len(VBA.Replace(Rng, vbLf, ""))
If lLFs > 0 Then
Rng.Offset(1, 0).Resize(lLFs).Insert shift:=xlShiftDown
Rng.Resize(lLFs + 1).Value = Application.WorksheetFunction.Transpose(VBA.Split(Rng, vbLf))
End If
Next
End Sub
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Like this?
Book1
AB
1CellData
2A9Earnings 1 Earnings 2 Earnings 3 Earnings 4 Earnings 5 Earnings 6 Earnings 7 Earnings 8 Earnings 9 Earnings 10
3
4
5
6CellData
7A9Earnings 1
8A9Earnings 2
9A9Earnings 3
10A9Earnings 4
11A9Earnings 5
12A9Earnings 6
13A9Earnings 7
14A9Earnings 8
15A9Earnings 9
16A9Earnings 10
Sheet1


That took less than 2 minutes (which never has to be done again) with Power Query and only 2 lines of M Code using the UI:
Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Split Column by Delimiter" = Table.ExpandListColumn(Table.TransformColumns(Source, {{"Data", Splitter.SplitTextByDelimiter("#(lf)", QuoteStyle.Csv), let itemType = (type nullable text) meta [Serialized.Text = true] in type {itemType}}}), "Data")
in
    #"Split Column by Delimiter"

Best part is as the original table grows, the resulting table can just be Refreshed. Just don't put anything under the original table!
 
Upvote 0
Thank you for your response!! Your last comment made me realize that I need to follow a more strategic approach to setup the data for efficient analysis and scalability. This makes it much more complex but it may really help other folks if they have a similar data extract to work from. Hopefully you can help.

See below: The data is in three columns. All three columns have the potential to have data with carriage returns between the data. The rows will be different over time, so placing the results below won't work. We will need to put them out to the side. My original plan is not going to work.

I seek to flatten it so there is one line for each Jurisdiction and all the attributes are on the same line. Then repeat for the next row, and place the results below it so it is all in one simple list.
I am unable to use the L2BB due to permissions, so sending a picture.
Hope you can help and thank you !
 

Attachments

  • Flatten Data.PNG
    Flatten Data.PNG
    70.7 KB · Views: 8
Upvote 0
Thank you for your response!! Your last comment made me realize that I need to follow a more strategic approach to setup the data for efficient analysis and scalability. This makes it much more complex but it may really help other folks if they have a similar data extract to work from. Hopefully you can help.

See below: The data is in three columns. All three columns have the potential to have data with carriage returns between the data. The rows will be different over time, so placing the results below won't work. We will need to put them out to the side. My original plan is not going to work.

I seek to flatten it so there is one line for each Jurisdiction and all the attributes are on the same line. Then repeat for the next row, and place the results below it so it is all in one simple list.
I am unable to use the L2BB due to permissions, so sending a picture.
Hope you can help and thank you !
Guess you didn't read my Signature. Post the two tables using XL2BB.
 
Upvote 0
Guess you didn't read what the Op said ;)
I'll put together a very small or easy table myself sometimes, and MAYBE the Op doesn't have sufficient "permission" to add an Add-in (that would require a very well managed, fairly large infrastructure), but can't do that but CAN post a screenshot? Sloppy security if so. It doesn't make sense.
 
Upvote 0
It's pretty simple & lots of companies do it.


Totally different things. One is allowing macro enabled files onto the system, the other is not.
I worked in IT Support for a major Accounting Firm for 27 years - last 5 doing Inventory Management and control for over 350K mobile devices, and over 100K Carrier accounts across 4 carriers. If a company is worried enough about Add-Ins, they'd block being able to make a screenshot if they really wanted to be THAT secure. It's not unlike DUMB banking sights that put "protections" on PDF statements - like they can't be "printed" to another format, and then that can be "printed" again to an open PDF.
 
Upvote 0
From this Table:
Book1
ABC
1JurisdictionText1Text2
2State 1 State 21 2 3a b
3State 7 State 8xxx YYY ZZZ
4State A State B State C State D555 666 777 888Test 1 Test 2
Sheet1

Using Power Query
Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="tblMessy"]}[Content],
    SplitJurisdictionColumn = Table.ExpandListColumn(Table.TransformColumns(Source, {{"Jurisdiction", Splitter.SplitTextByDelimiter("#(lf)", QuoteStyle.Csv), let itemType = (type nullable text) meta [Serialized.Text = true] in type {itemType}}}), "Jurisdiction"),
    SplitText1Column = Table.SplitColumn(SplitJurisdictionColumn, "Text1", Splitter.SplitTextByDelimiter("#(lf)", QuoteStyle.Csv), {"Text1.1", "Text1.2", "Text1.3", "Text1.4"}),
    SplitText2Column = Table.SplitColumn(SplitText1Column, "Text2", Splitter.SplitTextByDelimiter("#(lf)", QuoteStyle.Csv), {"Text2.1", "Text2.2"})
in
    SplitText2Column
to get this
Book1
ABCDEFG
6JurisdictionText1.1Text1.2Text1.3Text1.4Text2.1Text2.2
7State 1123ab
8State 2123ab
9State 7xxxYYYZZZ
10State 8xxxYYYZZZ
11State A555666777888Test 1Test 2
12State B555666777888Test 1Test 2
13State C555666777888Test 1Test 2
14State D555666777888Test 1Test 2
Sheet1

You might want to check out my post here on Macro security. That may resolve the problem you're having with XL2BB.
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,192
Members
449,072
Latest member
DW Draft

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