I'm currently returning a string of Jira Keys in an SSRS report (e.g. ABCD-1234, ABCD-1235, ABCD-1236, ABCD-1237), for formatting reason I don't want this to line break in the middle of a key.
e.g. I want this:
| |
| ABCD-1234,ABCD-1235, |
| ABCD-1236,ABCD-1237 |
| |
Not this:
| |
| ABCD-1234,ABCD-1235,ABCD- |
| 1236,ABCD-1237 |
| |
I can't seem to find a chr() or chrW() code to replace the current dash being returned by the SQL query (called as a proc so can't be amended directly in SSRS itself). Is there a way to replace this in SSRS or am I best looking to amend the original SQL proc to return a non-line breaking dash?