I have found some helpful examples of splitting columns, but none as specific as what I am trying to do.
I have a column with state & school information for a list of people that looks like this:
Col1
Miami, FLSchoolA
Charlotte, NCSchoolB
I want to separate after the string , ST
but obviously the states are different. I would like this example to look like:
Col1 Col2
Miami, FL SchoolA
Charlotte, NC SchoolB
Any help would be much appreciated.