I have some text like this:
"word word word 123(56) word word"
The "123(56)" happens to be at the end of the line and is getting broken up. It is being displayed like this:
"word word word 123
(56) word word"
But I want it like this:
"word word word
123(56) word word"
Note that this text is generated dynamically from database data so I can't just manually insert a line break at the right spot. What I want to know is if there is a way to make SSRS treat "123(56)" like a single word that will always appear together on the same line.