Hello everyone, I have a problem that I can’t solve.
When I generate my newsletter with a formula that uses the ForEach() and Concatenate() functions,
I have commas that appear between my “blocks”
Do you have an idea to avoid this not very aesthetic problem?
Thanks in advance.
The formula in question:
[Prochaine Veille].Categorie.Unique()
.Sort(
true, [DB Categorie].[Ordre NL]
)
.FormulaMap(
CurrentValue
.WithName(
Rubrique,
Concatenate(
Upper(CurrentValue.Titre),
LineBreak(),
[Prochaine Veille].Filter(Categorie = Rubrique)
.Sort(
true, Outils
)
.FormulaMap(
Concatenate("■ ",[Veille Newsletter],
LineBreak()
)
),
LineBreak()
)
)
)