Hello I am working in this assignment and can't seem to figure out how to solve for problem 1. I have have been using the text to column and was hoping to get some help. This is the problem "
I have attached the data set. thank you
Hi @Jesstap,
I am not a wrangling expert and there is almost certainly more than one way to do it. I think you are on the right track with using the Text To Columns tool, but you may need to do a bit of pre-processing of the Payroll_ID field first, so as to introduce an appropriate delimiter to split on?
It looks like there are always 8 digits followed by one or more letters? If so, Left([Payroll_ID],8) will give you the number, and e.g. Substring([Payroll_ID],8) will give you the remaining text.