[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD] Date
[/TD]
[TD]Name
[/TD]
[TD]Amount
[/TD]
[/TR]
[TR]
[TD]June 1
[/TD]
[TD]Bob
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]June 1
[/TD]
[TD]Bob
[/TD]
[TD]6
[/TD]
[/TR]
[TR]
[TD]June 1
[/TD]
[TD]Doug
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]June 2
[/TD]
[TD]Bob
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]June 2
[/TD]
[TD]Doug
[/TD]
[TD]7
[/TD]
[/TR]
[TR]
[TD]June 2
[/TD]
[TD]Doug
[/TD]
[TD]4
[/TD]
[/TR]
[TR]
[TD]June 3
[/TD]
[TD]Bob
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]June 3
[/TD]
[TD]Bob
[/TD]
[TD]3
[/TD]
[/TR]
[TR]
[TD]June 3
[/TD]
[TD]Doug
[/TD]
[TD]8
[/TD]
[/TR]
[TR]
[TD]June 3
[/TD]
[TD]Doug
[/TD]
[TD]4
[/TD]
[/TR]
</tbody>[/TABLE]
I'd like to pivot the above data with Names in the rows, Dates in the columns, and the sum of the amounts for each person each day in the values. I know how to do this. My problem is I would like to filter the values to only show days that are greater than 10. Example Doug's sum of 5 on June 1 would be filtered out of the table (display as blank cell). Bob's sum on June 1 would be displayed as 11 because the sum is greater than 10.
Is this possible? When I attempt it, my summed values filter based on the Grand Total, which doesn't help me.
<tbody>[TR]
[TD] Date
[/TD]
[TD]Name
[/TD]
[TD]Amount
[/TD]
[/TR]
[TR]
[TD]June 1
[/TD]
[TD]Bob
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]June 1
[/TD]
[TD]Bob
[/TD]
[TD]6
[/TD]
[/TR]
[TR]
[TD]June 1
[/TD]
[TD]Doug
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]June 2
[/TD]
[TD]Bob
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]June 2
[/TD]
[TD]Doug
[/TD]
[TD]7
[/TD]
[/TR]
[TR]
[TD]June 2
[/TD]
[TD]Doug
[/TD]
[TD]4
[/TD]
[/TR]
[TR]
[TD]June 3
[/TD]
[TD]Bob
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]June 3
[/TD]
[TD]Bob
[/TD]
[TD]3
[/TD]
[/TR]
[TR]
[TD]June 3
[/TD]
[TD]Doug
[/TD]
[TD]8
[/TD]
[/TR]
[TR]
[TD]June 3
[/TD]
[TD]Doug
[/TD]
[TD]4
[/TD]
[/TR]
</tbody>[/TABLE]
I'd like to pivot the above data with Names in the rows, Dates in the columns, and the sum of the amounts for each person each day in the values. I know how to do this. My problem is I would like to filter the values to only show days that are greater than 10. Example Doug's sum of 5 on June 1 would be filtered out of the table (display as blank cell). Bob's sum on June 1 would be displayed as 11 because the sum is greater than 10.
Is this possible? When I attempt it, my summed values filter based on the Grand Total, which doesn't help me.