Logicwurks Home Page

Links To Excel Code Examples

Range/Wkb/Wks Variables
Add Grand Totals Using Ranges
Using Range Offset Property
Using Range Find Method
Union Of Ranges
Delete Duplicate Rows
Delete Rows And Columns
Worksheet Variables
Loop Through Worksheets
Add Worksheets Dynamically
Find Last Row Or Column
Copy And Paste Special
Copy To Specific Cell Types
Open An Excel File
Open An Excel File w/Params
Open An Excel File On Web
Sort Methods 2003 - 2010
Sort Alpha/Numeric In ASCII
Search Using Match Function
Search Using Vlookup Function
Remove String Non-Printables
Auto_Open And Auto_Close
Initialize Form At Open
Load Combo And List Boxes
Excel Events
Worksheet Change Events
Binary Search Of Array
Typecast Constants
Excel Error Handling
Handling Optional Parameters
Data Validation Drop Downs
Read A Text Fiile w/Handle
Read A Text Fiile w/Script
Dynamically Load Images
Test For Exists Or Open
Loop Through Pictures
Loop Through Form Objects
Splash Screen
Dynamically Load Formulas
Date Examples
Date Find Same Days
Convert Month To Number
Initialize Arrays
Redim An Array
Reassign Button Action
Timer Functions
Legacy Calendar Control
Excel 2010 Date Picker
Paste Pictures Into Excel
Generate Multiple Worksheets
Read Access Data Into Excel

Links To Access Code Examples

Create Recordset With AddNew
Update Field(s) In A Recordset
Import A Tab Delimited File
Export Excel From Query
Import Tab Delim w/WinAPI
Initialize Global Variables
Access Error Handling
Loop Through Form Controls
Insert A Calendar Control
Create A Filtered Recordset
Populate Combo Boxes
Passing Form Objects
Create VBA SQL Statements
Create Dynamic Queries
Display File Images On A Form
Manipulate Files via VBA
Manipulate Files via Scripting
Number Subform Records
Parse Delimited Fields
Parameterized Queries (VBA)
Manipulating QueryDefs In VBA
FindFirst On Combined Keys
Execute SQL Delete Records
Commit Form To Table
Report With No Data
Reference Form Objects

 

Parsing A Delimited Text or Memo Field

Sometimes the developer has little control on the format of data for "migration" applications. Occasionally, files from mainframes or other systems will use a single text string to store multiple occurrances of data, each occurrance delimited by characters such as commas, pipes or spaces. The example below shows how to use the "Split" function to separate out each substring within a delimited string. In the example below, assume that "Field1" represents the social security number, "Field2" a name, and the next field each zip code where the individual has lived. The pipe character is used as the delimiter in this example.

A record set might look something like this:

554778569 John Doe |91440|87276|55569|95124|
613659990 Joey Smart |22189|50091|

The program would create six records in the following format:

554778569 John Doe 91440
554778569 John Doe 87276
554778569 John Doe 55569
554778569 John Doe 95124
613659990 Joey Smart 22189
613659990 Joey Smart 50091

Program Code

Option Compare Database
Option Explicit

' ***********************************************************************
' Explode Piped Data into Individual Records
' ***********************************************************************
Public Function ReformatPipedDataSplit()

Dim db As Database
Dim recIn As Recordset
Dim recOut As Recordset
Dim strParsedData() As String
Dim i As Long

' ***********************************************************************
' Open the Files
' ***********************************************************************
Set db = CurrentDb()

' ***********************************************************************
' Open the Files For The Division Open Orders
' ***********************************************************************
Set recIn = db.OpenRecordset("tblMyFileWithPipes")
Set recOut = db.OpenRecordset("tblMyExplodedFile")

' ***********************************************************************
' Loop Through and Create The Exploded File
' ***********************************************************************
Do
' ***********************************************************************
' Parse The Input File into multiple output records
' ***********************************************************************
    If IsNull(recIn!MyMemoField) Then
        GoTo Skip_Record
    End If
    
    strParsedData = Split(recIn!MyMemoField, "|")
    
    For i = 0 To UBound(strParsedData)
        If strParsedData(i) <> "" Then
            recOut.AddNew
            recOut!Field1 = recIn!Field1
            recOut!Field2 = recIn!Field2
            recOut!Exploded = strParsedData(i)
            recOut.Update
        End If
    Next i
    
' ***********************************************************************
' Get the next record
' ***********************************************************************
Skip_Record:
    recIn.MoveNext
Loop Until recIn.EOF

recIn.Close
recOut.Close
Set recIn = Nothing
Set recOut = Nothing
Set db = Nothing

End Function