mackermagoo,
Yes importing is just fun. You can Split Name field in Excel....
(Assume FullName is column a, Firstname is B and lastname is C
Firstname: iferror(left(A1,find(" ",a1)) ,a1) If fullname does not have any space then enter in full name othrwise find the first space and grab all of the letters before it.
Lastname: right(a1,len(a1)-len(b1)) (If you have a middle name, it will fallin last name)
Hope thats helps... Fran