Extract first numerical value to the left & right of a defined criteria from a string of text Pt2

HockeyDiablo

Board Regular
Joined
Apr 1, 2016
Messages
182
This is an additional question from post.

http://www.mrexcel.com/forum/excel-...left-right-defined-criteria-string-text.html#

I am curious on how to get the program to return additional columns if there is another instance of criteria

A
110 yr spring 399 rollers 188 sc 40 total 627 ck sc will be waived
2$40 radio board and free sc over $500 $140 spring $103.80 40 sc total $283.80 ck
3argued sc reduce rate same day 5 yr 299 cables 58 rollers 148 sc 20 525 sc just because

<tbody>
</tbody>

The desired results would be:

ABC
1188,40
2,50040,283.80
3,5148,20525,

<tbody>
</tbody>


Code:
Sub NumsToRightAndLeftOf_sc() 'Rick Rothstein MrExcel MVP  Dim R As Long, X As Long, Criteria As String, S() As String
  Dim Data As Variant, SC As Variant, Result As Variant
  Criteria = "sc"
  Data = Range("A1", Cells(Rows.Count, "A").End(xlUp))
  ReDim Result(1 To UBound(Data), 1 To 1)
  For R = 1 To UBound(Data)
    SC = Split(" " & Replace(Data(R, 1), "$", "") & " ", " " & Criteria & " ", , vbTextCompare)
    If UBound(SC) > 0 Then
      S = Split(Trim(SC(0)))
      If UBound(S) = -1 Then Result(R, 1) = "" Else Result(R, 1) = S(UBound(S))
      Result(R, 1) = Result(R, 1) & ", " & Split(Trim(SC(1)) & " ")(0)
    End If
  Next
  Range("B1").Resize(UBound(Result)) = Result
End Sub

TY to: Rick Rothstein
user-online.png

MrExcel MVP

I am basically looking to extract numbers to the right/left when a criteria is matched. But I want to add something where if there is a second instance of the criteria, to place that in the next respective column.
 
Last edited:

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
A
1
10 yr spring 399 rollers 188 sc 40 total 627 ck sc will be waived
2
$40 radio board and free sc over $500 $140 spring $103.80 40 sc total $283.80 ck
3
argued sc reduce rate same day 5 yr 299 cables 58 rollers 148 sc 20 525 sc just because

<tbody>
</tbody>

The desired results would be:

A
B
C
1
188,40
627,
2
,500
40,283.80
3
,5
148,20
525,

<tbody>
</tbody>
Why does doesn't what I highlighted in red on the top table produce the red result in cell B1 on the bottom table like the blue ones I highlighted did?
 
Upvote 0
See if this macro does what you want...
Code:
[table="width: 500"]
[tr]
	[td]Sub NumsToRightAndLeftOf_sc()
  Dim R As Long, X As Long, Criteria As String, Data As Variant, SC As Variant
  Criteria = "sc"
  Data = Range("A1", Cells(Rows.Count, "A").End(xlUp))
  ReDim Result(1 To UBound(Data), 1 To 1)
  For R = 1 To UBound(Data)
    Data(R, 1) = Replace(Data(R, 1), Criteria, "|", , , vbTextCompare)
    For X = 1 To Len(Data(R, 1))
      If Not Mid(Data(R, 1), X, 1) Like "[0-9.|]" Then Mid(Data(R, 1), X) = " "
    Next
    Data(R, 1) = Trim(Replace(" " & Application.Trim(Data(R, 1)) & " ", " | ", ","))
    SC = Split(Data(R, 1))
    For X = 0 To UBound(SC)
      If InStr(SC(X), ",") = 0 Then SC(X) = ""
    Next
    Data(R, 1) = Application.Trim(Join(SC))
  Next
  Range("B1").Resize(UBound(Data)) = Data
  Columns("B").TextToColumns , xlDelimited, , , False, False, False, True, Other:=False, FieldInfo:=Array(Array(1, 2), Array(2, 2), Array(3, 2))
End Sub[/td]
[/tr]
[/table]
 
Upvote 0
You have no idea on how grateful I am for this. I envy your skill and speed on this stuff. Flawless as always. You literally saved my behind. Could the Criteria be changed
Code:
Criteria = "sc"[CODE] by just replacing with the new criteria??  Yes, yes you can. I am so intrigued by this. Thank you so very much
 
Last edited:
Upvote 0
I was working with this code today and now all it is giving me is a Run-time error '13': Type Mismatch in row
Code:
Data(R, 1) = Replace(Data(R, 1), Criteria, "|", , , vbTextCompare)

Dont understand this as it was working earlier? Even starting over from scratch with new sheets gives the same error?
 
Upvote 0
I was working with this code today and now all it is giving me is a Run-time error '13': Type Mismatch in row
Code:
Data(R, 1) = Replace(Data(R, 1), Criteria, "|", , , vbTextCompare)

Dont understand this as it was working earlier? Even starting over from scratch with new sheets gives the same error?
What is stored in Date(R, 1) and Criteria when the error occurs?
 
Upvote 0
I am unsure, I think it is something in my string that is causing the error. When I add 2-300 it seems to work fine, but all 56k rows it creates the error...
 
Upvote 0
There was one error in the mass of rows causing all my headaches.... Thank you Rick

What if I wanted to search for numbers and return the first words to the right/left??
 
Upvote 0

Forum statistics

Threads
1,215,482
Messages
6,125,060
Members
449,206
Latest member
Healthydogs

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