I've got a text file that contains data in the following format:
ID START END COMMENT
01 9am 12pm Login
12pm 1pm Lunch
1pm 5pm Logout
02 7am 11am Login
11am 12am Lunch
12am 4pm Logout
Now I would like to import this file and write the ID to each column found in the data for example for the ID01 I’d like to end up with:
ID START END COMMENT
01 9am 12pm Login
01 12pm 1pm Lunch
01 1pm 5pm Logout
Any ideas how I can pull this off?
ID START END COMMENT
01 9am 12pm Login
12pm 1pm Lunch
1pm 5pm Logout
02 7am 11am Login
11am 12am Lunch
12am 4pm Logout
Now I would like to import this file and write the ID to each column found in the data for example for the ID01 I’d like to end up with:
ID START END COMMENT
01 9am 12pm Login
01 12pm 1pm Lunch
01 1pm 5pm Logout
Any ideas how I can pull this off?