To save time, I would have a name function which I have combined the firstname and lastname as follows:
=FirstName & " " & LastName
When a user selects a name based on this, I want to then split it back into FirstName and LastName fields again to prevent the user having to enter in two fields instead of one. How do I split it?
=FirstName & " " & LastName
When a user selects a name based on this, I want to then split it back into FirstName and LastName fields again to prevent the user having to enter in two fields instead of one. How do I split it?