So after doing some research I was able to find the format I need to get the CSV File into
Subject,Start Date,Start Time,End Date,End Time,All Day Event,Description,Location,Private
The issue is, the CSV export I'm working with is not in the correct format or order, what is the best way to go about gathering that information? Here is a bit of my source.
Name,User Name,Row Type,Start Date,Start Time,End Time,End Date,Segment Start Date,Type
"Smith, John J",jjs,Shift,5/29/2011,9:30,17:30,5/29/2011,5/29/2011,Regular
"Smith, John J",jjs,Shift,5/30/2011,13:30,17:30,5/30/2011,5/30/2011,Regular
Dim Name As String = ""
Dim UserName As String = ""
Dim Data As String = """Smith, John J"",jj802b,Shift,5/29/2011,9:30,17:30,5/29/2011,5/29/2011,Transfer"
For r As Integer = 1 To 10
Name = Data.Substring(0, Data.LastIndexOf(""""))
Data = Data.Remove(0, Data.LastIndexOf(""""))
UserName = Data.Substring(Data.LastIndexOf(""""), ",")
Next
John "Smarty" Pants
, you might need to generate an output as""John ""Smartie"" Pants"", ...
. – luiscolorado Jun 03 '11 at 20:26