I have a SSRS local report and I need to display a list of addresses. Naturally, they need to be formatted to look how addresses should. There will never be more than 10 and could be as low as zero. I am thinking like 3 rows of 4 or 4 rows of 3 to maximize the real estate.
I have a few ideas but they all seem, well, there should be a better way:
- Format the entire text in sql and return it in a large text box in the report.
- Create an object with 3 properties that are strings. Every three would fill each property and the next would be a new row. This would create four rows of three strings. I could create a table with each property being the column.
- Somehow use a pivot table (or few to turn the rows into columns. This would be similar to #2.
- See if a matrix could do this. (I don't think it can)
Does anyone have any better ideas or perhaps a best way of doing one of these?