Hey so I have various different categories/tags linked together into a single string with a combination of rollups and a formula.
Sometimes there is a blank value for the last “{Tipologie Rollup}” and then I get an additional comma at the end of the string.
How do I add an if statement to say IF the last character of string = “,” remove it.
If it doesn’t do nothing.
My current formula which works.
IF({Technologie Rollup} = BLANK(), “”, {Technologie Rollup} & “,”) &
IF({Bisogni Rollup} = BLANK(), “”, {Bisogni Rollup} & “,”) &
IF({Settori Rollup} = BLANK(), “”, {Settori Rollup} & “,”) &
IF({Tipologie Rollup} = BLANK(), “”, {Tipologie Rollup})
Just need to add that cleanup if statement in the scenario there is no Tipologie Rollup data.

