Hi there.
I've been using PowerQuery to collapse a flat file into combined, multi-value cells with delimiters. The inconsistent nature of the raw data results in repeating delimiters / spaces, like so:
I'd like to add some code to strip out the excess delimiters (and any leading delimiters) so that the result is:
A bonus would be if I could sort the entries between delimiters, like so:
Many thanks.
I've been using PowerQuery to collapse a flat file into combined, multi-value cells with delimiters. The inconsistent nature of the raw data results in repeating delimiters / spaces, like so:
; ; Smith, Judy; Carson, Kevin; ; Levy, Kevin; Bloom, Judy; ; ; ; Nicholas; ; ; |
I'd like to add some code to strip out the excess delimiters (and any leading delimiters) so that the result is:
Smith, Judy; Carson, Kevin; Levy, Kevin; Bloom, Judy; Nicholas |
A bonus would be if I could sort the entries between delimiters, like so:
Bloom, Judy; Carson, Kevin; Levy, Kevin; Nicholas; Smith, Judy |
Many thanks.