Splitting text in cells.

Saighead

New Member
Joined
May 17, 2013
Messages
34
Hi,

I need a script that would break up a block of text in a cell at full stops, question marks, and exclamation marks, and create additional cells (not rows) shifting bottom cells down and inserting split sentences consecutively into created cells.

So, for example,

A1 Sentence 1. Sentence 2? Sentence 3!
A2 Sentence 4.

Soulld become:

A1 Sentence 1.
A2 Sentence 2?
A3 Sentence 3!
A4 Sentence 4.

Could someone help me with this, please?

Thanks in advance.
 
Last edited:
Returned data

A1 Sentence 1
Sentence 2
Sentence 3
A2 Sentence 4
A3 Sentence 1
A3 Sentence 2
A3 Sentence 3
This data to be last

I assumed that each sentence was supposed to go in its own cell, not multiple sentences remaining in the same cell split into different lines. I made this assumption based on this taken from the OP's first message....

"I need a script that would break up a block of text in a cell at full stops, question marks, and exclamation marks, and create additional cells (not rows) shifting bottom cells down and inserting split sentences consecutively into created cells."
 
Upvote 0

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
It only moves the cells below down not the entire row (checked this by putting data in the column next to the selection.

Probably needs clarification from @Saighead
 
Last edited:
Upvote 0
@nemmi69

Tried your modified code from Post 20 together with the function from post 13 .
Result: Run-time error '13': Type mismatch. [ Debugger goes here: LbInArray = LBound(InputArray) ]

@Rick Rothstein

Tried your code from post 12 .
Result: Run-time error '13': Type mismatch. [ Debugger goes here: For R = 1 To UBound(Data)]

Cell (A1) I was trying to break up contained "Sentence 1. Sentence 2? Sentence 3!" (without quotes).

As for the argument above, each sentence is supposed to go in its own cell. It shouldn't be a case of multiple sentences remaining in the same cell split into different lines.

PS. I got one working (well, sort of) solution here (post 15 ). Maybe you'll find it useful for your own scripts...
The drawbacks are: a) it's pretty slow when columns are long, b) it inserts a blank cell after last segments for every original cell, and c) it keeps spaces after separators (.?!), so that every new cell starts with a leading space.

PPS. Maybe your scripts are for newer versions of Excel? I'm using Excel 2007...
 
Last edited:
Upvote 0
Sorry, Found it did not take care of data that has no criteria's in.

Should be fixed now

Code:
Function MultiCritSplit(ByVal InString As String, Crit1 As String, Optional Crit2 As String, Optional Crit3 As String, Optional Crit4 As String, Optional Crit5 As String) As String()
Dim TmpString As String
Dim CritArray() As String
Dim OutArray() As String
Dim MidString As String
Dim ArrayCnt As Integer
Dim LenInString As Integer
Dim CharCnt As Integer
Dim ChkLoop As Integer
Dim ArrayID As Integer
Dim RowInc As Integer
Dim CritFnd As Boolean


ArrayCnt = 0


' Validate
If Trim(Crit1) = "" Or Trim(InString) = "" Then
    GoTo NoCrit
Else
    ReDim CritArray(ArrayCnt)
    CritArray(ArrayCnt) = Crit1
End If
 
If IsMissing(Crit2) = False Then
    ArrayCnt = ArrayCnt + 1
    ReDim Preserve CritArray(ArrayCnt)
    CritArray(ArrayCnt) = Crit2
End If


If IsMissing(Crit3) = False Then
    ArrayCnt = ArrayCnt + 1
    ReDim Preserve CritArray(ArrayCnt)
    CritArray(ArrayCnt) = Crit3
End If


If IsMissing(Crit4) = False Then
    ArrayCnt = ArrayCnt + 1
    ReDim Preserve CritArray(ArrayCnt)
    CritArray(ArrayCnt) = Crit4
End If


If IsMissing(Crit5) = False Then
    ArrayCnt = ArrayCnt + 1
    ReDim Preserve CritArray(ArrayCnt)
    CritArray(ArrayCnt) = Crit5
End If


' Split input string
ArrayID = 0
CritFnd = False
TmpString = InString
LenInString = Len(TmpString)
CharCnt = 1
RowInc = 1
Do While LenInString > 0 And RowInc < 10000
    For ChkLoop = 0 To ArrayCnt
        MidString = Mid(TmpString, CharCnt, 1)
        If MidString = CritArray(ChkLoop) Then
            ReDim Preserve OutArray(ArrayID)
            OutArray(ArrayID) = Trim(Mid(TmpString, 1, CharCnt - 1))
            TmpString = Right(TmpString, LenInString - CharCnt)
            LenInString = Len(TmpString)
            ArrayID = ArrayID + 1
            CharCnt = 1
            CritFnd = True
            Exit For
        End If
    Next ChkLoop
    CharCnt = CharCnt + 1
    RowInc = RowInc + 1
Loop
If CritFnd = False Then
    ReDim Preserve OutArray(ArrayID)
    OutArray(ArrayID) = InString
End If
MultiCritSplit = OutArray
Exit Function


NoCrit:


End Function
 
Upvote 0
@Rick Rothstein

Tried your code from post 12 .
Result: Run-time error '13': Type mismatch. [ Debugger goes here: For R = 1 To UBound(Data)]

Cell (A1) I was trying to break up contained "Sentence 1. Sentence 2? Sentence 3!" (without quotes).
I think I know what the problem may have been. Here is my revised code which worked for me when I tested it... see if it also works for you as well.
Code:
[table="width: 500"]
[tr]
	[td]Sub SplitSelectedSentenceCellsDown()
  Dim R As Long, Cnt As Long, Combo As String, Sentences As Variant, Result As Variant
  Dim Data As Variant
  Data = Selection.Value
  Cnt = Selection.Rows.Count
  If IsArray(Data) Then
    For R = 1 To UBound(Data)
      Combo = Combo & " " & Data(R, 1)
    Next
  Else
    Combo = Data
  End If
  Combo = Trim(Combo)
  If Not Right(Combo, 1) Like "[.?!]" Then Combo = Combo & "."
  Sentences = Split(Replace(Replace(Replace(Combo, ".", "." & vbLf), "?", "?" & vbLf), "!", "!" & vbLf), vbLf)
  ReDim Result(1 To UBound(Sentences), 1 To 1)
  Selection(1).Resize(UBound(Sentences) - Cnt).Insert xlDown
  For R = 1 To UBound(Sentences)
    Result(R, 1) = Trim(Sentences(R - 1))
  Next
  Selection(1).Resize(UBound(Result)) = Result
End Sub[/td]
[/tr]
[/table]



PPS. Maybe your scripts are for newer versions of Excel? I'm using Excel 2007...
It is always a good idea to mention the earliest version of Excel that will ever be used with your workbook.
 
Upvote 0

Forum statistics

Threads
1,214,973
Messages
6,122,534
Members
449,088
Latest member
RandomExceller01

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