VBA Help - Extracting text from massive string

hellfire45

Active Member
Joined
Jun 7, 2014
Messages
462
I am being tasked with extracting various strings from a massive XML feed and putting the extracted text into an excel template.

The challenges:


  • This XML feed is 1.5 million characters long. I'm not sure if VBA can handle this. I think the string variable has a cap? I can open the XML file with notepad and it pastes fairly cleanly into excel.



  • Having a function that can locate a piece of text in this string and extract it. For example in the bottom line of code, I would need to locate the text between the start and end tags, therefore, "BRIDGE COUNTY TOLL CALL-IN".

#SKUDesc # Bridge Country Toll Call-in (1)# /SKUDesc#
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
If it can be pasted into Excel, you should be able to do it. You work cell by cell, not the entire file at a time.
 
Upvote 0
  • Having a function that can locate a piece of text in this string and extract it. For example in the bottom line of code, I would need to locate the text between the start and end tags, therefore, "BRIDGE COUNTY TOLL CALL-IN".

#SKUDesc # Bridge Country Toll Call-in (1)# /SKUDesc#
I am not clear what you are wanting to do here... can you explain what your ultimate goal is in a little more detail?
 
Upvote 0
I am not clear what you are wanting to do here... can you explain what your ultimate goal is in a little more detail?


Hi thanks!

I think at this point my problem has changed. Let me explain.

If I use the code below (longer code), it pastes the xml file into excel but it does it as an XML table. I don't think this is what I want.

What looks better and easier for me to use is if I open a new notepad file, and open the XML with notepad (which looks like a 1000 pages of just text), then if i SELECT ALL and paste into excel in column A, it looks nice. It's just about 50,000 rows of text all separated out. From here, can use VBA such as the smaller code below to find and extract when I want.

Is there anyway to get the data out of the XML file in the way I described? If more clarification is needed, I will do my best. Thanks for the time.

Code:
Set FindRow = .Range("A:A").Find(What:=str_set, LookIn:=xlValues)

Code:
Option Explicit

Sub build_template()
Dim strTargetFile As String
Dim wb As Workbook


     Application.ScreenUpdating = False
     Application.DisplayAlerts = False
     strTargetFile = "C:\Users\jjoseph\Desktop\6100109308_401747811_XML.xml"
     Set wb = Workbooks.OpenXML(Filename:=strTargetFile, LoadOption:=xlXmlLoadOpenXml)
     Application.DisplayAlerts = True


     wb.Sheets(1).UsedRange.Copy target.Range("A1")
     wb.Close False
     Application.ScreenUpdating = True


End Sub
 
Last edited:
Upvote 0
Is there anyway to get the data out of the XML file in the way I described? If more clarification is needed, I will do my best. Thanks for the time.
Change the file extension from .xml to .txt then open it with Excel, fixed width.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,136
Messages
6,123,246
Members
449,093
Latest member
Vincent Khandagale

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