I'm trying to add leader dots to some captions in a 2017 RDLC report like the leader dots property in Classic reports.
I'm using the following in the textbox expression, but the "leader dots" gets pushed to the next line, and thus is not visible.
=Parameters!Item_Ledger_Entry_ManItemNoCaption.Value & StrDup(100,".")
If I only add a few dots, they are visible.
Any way to supress the line break?
Answers
If I just use "Item", it works. "Item No. " doesn't work either.
The space makes it break the line.
Solution:
Replace spaces with non breaking spaces.