Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAFun!
Anyone out there: is there a way to extract via REGEX PARSE both city and state for both records containing both city and state and records containing only city?
EG: Charlotte, North Carolina
Vancouver
So that we'd get 2 columns but NULL when there's no State. Yes, I could use tokenize with [^,]+ or text to columns, but i was wondering if there's a way via RegEx Parse. Thanks!