Hello,
I have a data set with customer names, some of them as long as 200 character lengths. I want to create 3 new columns from the customer name. Column 1 character limit 40, Column 2 character limit 40, Column 3 remaining characters. I've tried using a substring but i'm running into the issue of the columns breaking mid-word.
For Example:
Data Field: I have a data set with customer names, some of them as long as 200 character lengths
Column 1: I have a data set with customer names, (39 characters)
Column 2: some of them as long as 200 character (37 characters)
Column 3: lengths (remaining characters)
Is there a way to break on the delimiter (space) <40 characters?
I would provide a better example of a field i'm actually using but for security purposes I cannot. Any help would be greatly appreciated. I've tried looking into the Regex tool but i haven't been able to wrap my head around it.
Thanks,
J