stefanoa Active Member Licensed User Longtime User Jan 3, 2012 #1 how can I import contacts with name and last name separated? if i use displayname, is imported as a single field. example: ... Dim contactName As String contactName = c.DisplayName ... Result: contactName = "John Smith" i need to have: contactSurname = "Smith" contactName = "John" there is a way to do it? thanks
how can I import contacts with name and last name separated? if i use displayname, is imported as a single field. example: ... Dim contactName As String contactName = c.DisplayName ... Result: contactName = "John Smith" i need to have: contactSurname = "Smith" contactName = "John" there is a way to do it? thanks
C COBRASoft Active Member Licensed User Longtime User Jan 3, 2012 #2 Not entirely correct, but you could use RegEx.Split(" ") Upvote 0