I'm using Microsoft Report Builder 2014 and I have a Tablix that has 20 columns. Only about 10 can fit on one page lengthwise. When running a report the first 10 will appear on page one. The second 10 will appear on page 2. I would like the first column of the Tablix to repeat on the left side of each page.
The instructions at https://msdn.microsoft.com/en-us/library/dd207045(v=sql.120).aspx appeared to be exactly what I was looking for. I followed the steps under "To display a static tablix member (row or column) on multiple pages".
While these steps work as expected for static row groups, when following them exactly as described they do not work for static column groups. The following error occurs when running the report:
The tablix 'Tablix7' has an invalid TablixMember. All TablixMember elements in a TablixColumnHierarchy must have the KeepWithGroup property set to "None".
Setting KeepWithGroup to "None" and keeping RepeatOnNewPage causes an error as well:
The tablix 'Tablix7' has an invalid TablixMember. All TablixMember elements in a TablixColumnHierarchy must have the RepeatOnNewPage property set to false.
Is there a way to allow one or more static column groups to repeat on multiple pages? Or another way to get that first column to repeat on the next page? The documentation implies this is possible, but following the steps as provided results in report errors.