I have a list of ingredients separated by a semicolon and a space: Basil; Roasted Red Peppers; ; ;
However, there are semicolons at the end, followed by a space, and I want to eliminate them so the end is clear.
AI tells me: Text.TrimEnd([ColName],{";"}&{" "})
...and it worked perfectly...except I don't understand the curly cue braces, and why the first semicolon in the formula removes all of the semicolons and not just the final semicolon and space. Please help and thank you in advance.
However, there are semicolons at the end, followed by a space, and I want to eliminate them so the end is clear.
AI tells me: Text.TrimEnd([ColName],{";"}&{" "})
...and it worked perfectly...except I don't understand the curly cue braces, and why the first semicolon in the formula removes all of the semicolons and not just the final semicolon and space. Please help and thank you in advance.