When a bulleted list has a line break following it in concatenate, or another bulleted list following it, the last bullet drops and it left aligns:
Yes, this is an issue where the styling picks up from the previous line instead of starting in the new. It’s a known issue and not easy to solve. It’s only picked up on some edge cases and we don’t see it pop up often.
For now, one way around it is including a blank value at the end of your list so the missing bullet is actually just blank…
Concatenate(
BulletedList("a","b","c",""),
Character(10),
BulletedList("1","2","3")
)
This will give you the layout you are looking for, but I totally see the bug here too.
I was able to solve it by replacing:
[list].bulletedlist()
with
listcombine([list],"").bulletedlist()
Thanks for the help @BenLee and for clarifying it is a known issue!
2 Likes