I'm trying to create a calculated group total in a list footer. In my filter, I've limited the numbers that the user is seeing. This works great, but when I try to create totals for the report, the report is generating totals for the underlying data, not the data that appears to the user.
For Instance if this is the data
AA 2
AB 3
AC 8
BB 1
BZ 4
and I'll filter the data for only records whose last character is B. So I'll get
AB 3
BB 1
When I try to calculate totals I would want to get the (3 + 1) = 4, but instead I'm getting (2 + 3 + 8 + 1 + 4) = 18.
Just for a twist, If I click on the column and choose Summary total, it calculates correctly but if I use the total function, it calculates incorrectly.
Thanks for the help.
For Instance if this is the data
AA 2
AB 3
AC 8
BB 1
BZ 4
and I'll filter the data for only records whose last character is B. So I'll get
AB 3
BB 1
When I try to calculate totals I would want to get the (3 + 1) = 4, but instead I'm getting (2 + 3 + 8 + 1 + 4) = 18.
Just for a twist, If I click on the column and choose Summary total, it calculates correctly but if I use the total function, it calculates incorrectly.
Thanks for the help.