This is my first post here
. I will try to remember all the sticky points i have just read for noobies. I am new to Access. I am using Access 2007.
Problem: I need some assistance in developing a module/procedure that will seperate a single column from a table based on different delimeters and numbers of delimeted text.
The table name is called "Allbookings" and looks like this:
Fullname
Smith/John C Mr
Citzen/Bob E W Mr
Abel/Jane Ms
..
..
Zanda/Andrew J
The result should look like this
The fields above are shown in bold and I would also like to keep the Fullname field.
The delimeters as shown above are "/" and " "
The salutations could be either Mr, Ms, Miss, Prof, Dr.
The table I am using has other columns and around 50,000 records.
Thank you in advance.
Leeman

Problem: I need some assistance in developing a module/procedure that will seperate a single column from a table based on different delimeters and numbers of delimeted text.
The table name is called "Allbookings" and looks like this:
Fullname
Smith/John C Mr
Citzen/Bob E W Mr
Abel/Jane Ms
..
..
Zanda/Andrew J
The result should look like this
Code:
Surname FirstName Other1 Other2 .. OtherN Salutation
Smith John C Mr
Citzen Bob E W Mr
Abel Jane Ms
..
..
Zanda Andrew J
The delimeters as shown above are "/" and " "
The salutations could be either Mr, Ms, Miss, Prof, Dr.
The table I am using has other columns and around 50,000 records.
Thank you in advance.
Leeman
Last edited: