D
David
How can I split a first name from a surname in a file that I have imported?
An example is david,sweeney
An example is david,sweeney
Ofer said:Another way will be to you the split function, to split between the two fields
=Split([fieldName],",")(0) will return the first name
=Split([fieldName],",")(1) will return the second name
David said:How can I split a first name from a surname in a file that I have imported?
An example is david,sweeney