Hi All,
I have a group footer row in my SSRS tablix as well as a tablix footer row. Each group footer has a new page after it. My report has about 35 different groups, so there are at least 35 pages. The group footer row has the following Visibility criteria expression in order to make sure only a single footer row occurs on each page:
=IIF(Fields!Color.Value = Last(Fields!Color.Value, "Color_Group"), TRUE, FALSE)
The expression is working fine for the vast majority of the groups because the group footer row isn't visible on pages where the tablix footer row appears. This is the intent.
However, two groups seem to have the Last() function somewhat confused because in each case the group footer and tablix footer appear on the same page. Furthering my suspicion is that one of the earlier group pages doesn't show the group footer even though it isn't the last member in the group. Not sure if this is relevant, but both of these problem groups have members that the other groups don't.
My data source is SSAS 2014. Could the sort order of my query results be causing this?
Thanks,
Eric