Extracting data seperated by spaces

tdub4034

New Member
Joined
Mar 25, 2015
Messages
14
Office Version
  1. 2016
Platform
  1. Windows
i am working with a excel spreadsheet that has been converted from PDF. The conversion rendered merged cells in a column that has percentages separated by 5 spaces (i.e. 100% 50%). Is it possible to use RegEx to extract "50%" and place it in next column ("C")? An un-merged action frees up a column where I would like to store the second percentage (50%).LEN discovered 12 characters. Generally, I'd like to, Take the right side of columns B & E place that data in it's respective adjacent column. So far, all I have succeeded in is getting "Compile error: User-defined type not defined". I've swithced expressions with "Set regex = CreateObject("vbscript.regexp") - but to no success.
Below is the code I have tried for Column B.
PDF2Excel.jpg

VBA Code:
Sub RegExTest()

    'CoInsurance "In" & "Out" percentages
    Dim arr As Variant
    arr = perNames.Range("B4").CurrentRegion.Columns(2).Value   

    'Create Regular Experession objevt
    Dim regEx As New RegExp
    regEx.Global = True
    regEx.Pattern = "[0-9]+"

    Dim text As Variant
    Dim mc As MatchCollection, row As Long
    row = 1
    
    'Read though each of the strings
    For Each text In arr

        If regEx.Test(text) = True Then
            Set mc = regEx.Execute(text)
            perNames.Range("C" & row).Value = mc(0)
            perNames.Range("D" & row).Vaue = mc(1)

        End If
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Does it have to use Regular Expressions?
VBA Code:
Sub SplitInOut()
  ' Fixes the head/percentage combo problem in cells B2 and E2
  Range("B2:B3") = Application.Transpose(Split(Range("B2"), vbLf))
  Range("E2:E3") = Application.Transpose(Split(Range("E2"), vbLf))
  ' Splits the values as you indicated you wanted
  Range("B2", Cells(Rows.Count, "B").End(xlUp)).TextToColumns , xlDelimited, , True, False, False, False, True, False
  Range("E2", Cells(Rows.Count, "E").End(xlUp)).TextToColumns , xlDelimited, , True, False, False, False, True, False
End Sub
 
Upvote 0
It does not have to use regex. I had tried using Split and the Left/Right methods but since the data format was different in other columns I decided to trash it. I thought that since the data was dynamic - Regex was the best way to handle it. I like the output but your code moves the sub headers "In","Out",Individual" & "Family" over one column too far - while also removing the zero ($0) amounts below "Deductible". Below is my desired output.
 

Attachments

  • 2019_12_17_10_04_06_Window.jpg
    2019_12_17_10_04_06_Window.jpg
    38.6 KB · Views: 9
Upvote 0
That means your data is not "pure"... you have a space in front of the word "In" and you have trailing spaces after the last percent sign in each cell. This code will fix those problems and then output what you wanted...
VBA Code:
Sub SplitInOut()
  Columns("B").Replace "% ", "%", xlPart, , , , False, False
  Range("B2:B3") = Application.Transpose(Split(Trim(Range("B2")), vbLf))
  Range("E2:E3") = Application.Transpose(Split(Trim(Range("E2")), vbLf))
  Range("B2", Cells(Rows.Count, "B").End(xlUp)).TextToColumns , xlDelimited, , True, False, False, False, True, False
  Range("E2", Cells(Rows.Count, "E").End(xlUp)).TextToColumns , xlDelimited, , True, False, False, False, True, False
End Sub
 
Upvote 0
Looks perfect. You are correct. I thought to myself (after reading your reply) a "Trim" was in order but I see that you included it in your edit. So why did you dismiss Regex and opt for "vblf"/"TextToColumns"? I have a tendency to make things more difficult than it should be.
 
Upvote 0
So why did you dismiss Regex and opt for "vblf"/"TextToColumns"?
Two reasons... first, the code is simpler (in my opinion)... second, it has been nearly 30 years since I did anything with Regular Expressions so I really do not remember much about using them any more.
 
Upvote 0

Forum statistics

Threads
1,214,560
Messages
6,120,222
Members
448,951
Latest member
jennlynn

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