I have a column in an excel which contains a mix of First Names, Last Names and Job titles. Only pattern that can be observed is - in each set of 3 rows, every 1st row is first name, 2nd row is last name and 3rd row is job title. I want to create 3 different columns and and segregate this data Sample data:
John
Bush
Manager
Katrina
Cohn
Secretary
I want: John , Bush , Manager as one row going in three different columns under First Name, Last name and Job title respectively. Like -
First Name Last Name Job Title
John Bush Manager
Katrina Cohn Secretary
How can we achieve this task?