Hi All,
I have a column of data that contains both the first and last name. I can use the example in the RegEx sample to easily parse most of it - except when it comes to names with hyphens.
I'm using the brackets to illustrate how I want the cells to appear:
[Joe-Schmo Johnson] needs to be [Joe-Schmo][Johnson]
I also get a NULL value if there is no first or last name; how can I replace a missing name with "N/A" or something to indicate it isn't there?
[Tom] becomes [NULL]
Thanks!!