Hello community,
This was a difficult subject line to write down. To elaborate: I have an app that pulls data from a SP list. The "Subjects" column is a multi-choice enabled column, to show that on a Gallery, I'm using the below Match/Concat formula (I also used different versions before but this is the current one I'm using). This puts the ▸ sign only in front of the whole text, I would like it to put before each subject line. Let me give you an example. This is the end result I want:
▸Maths
▸Science
▸English
▸Biology
and this is the code I have:
Concatenate("▸",(Match( Concat(ThisItem.Subjects.Value, Value & ", " ), "^(?<trim>.*), $" ).trim))
As mentioned, this puts a "▸" only at the beginning of the text. I would like it to put on every line.
Thank you,