Problem: Current input in numeric#; varchar
eg: 404#;a pruchase order
1#; b purchase order
1046#;x y x purchase order from this company
I need to have the numbers at the beginning put in a column and the name of the field after #; in a different column.
Parse will not work because there is a possibility of greater than 4 words in the title
As you can see #; is a common feature in all the inputs.
What I would like to see happen is:
ID Name
404 a purchase order
1 b purchase order
1046 xyz purchase order from this company
Any ideas?
I tried How do I split a string so I can access item x?
but that wouldn't work for me