Keep number groups together on line wrap

I have a column that is working correctly and displays and wraps a list of integers separated by commas.

I was wondering if there was a method to keep the numbers together on the line wrap. I looked into the string functions, but I didn’t see anything that pertained to this.

If you look at the screenshot, you will see that the number “18” is bifurcated with the “1” on the first line and the “8,” on the second line. I want to keep these number/comma groups together if possible.

Thank you for looking

ScreenShot080

Good Morning :wave: ,

There are two possible ways to accomplish this. You can either insert a space after each comma or add a conditional break (chr$(54)). The outcome will appear as follows:

image

Best regards.

That worked, thank you

image