Hi
I'm trying to put all values from multiple columns together but filter out any empty columns, I have this working but I'm also adding
"<br>" for html formatting, now I don't want to add the <br> if there is only one item that is not blank. And I don't want to add <br> to the last item if there are multiple.
Concat(Filter([DataCardValue35.Text, DataCardValue36.Text, , DataCardValue37.Text, , DataCardValue38.Text], Value <> ""), Value&"<br>")
The above is giving me the format I want and filters out empty DataCards but I don't want to add <br> if there is only one item with a value and the rest are empty and I would also like to remove the last <br> or else I end up with break lines I don't need.