My T_SUBJECT values are stored as 'Bloggs, Joe 6161/2007'
I'm trying to extract the surname and firstnames sperately and am running into trouble.
if inStr(Topic_Subject,",") <> 0 then
array1 = split(Topic_Subject,",")
newArray = ""
For a = 0 to Ubound(array1)
array2 = Split(array1(a)," ,")
Next