I need to merge name and surname from two columns and add this as a new column. I can do it but once its done I lost 16K rows and this new column with full name should be applied to all rows I have in the file.
Anyone knows why this might happen?
This is the code I used to create additional column:
FullName = Trainings['First Name']+" "+Trainings['Last Name']
Trainings.insert(5, 'Full Name', FullName, True)
After that I lost the data and this new column was applied to 5 rows.