0

This seems like something that should be so very simple and easy but I'm completely missing it. I've got a set of transactions I'm trying to report on. Each has a set of data that I'm displaying grouped by a business date. Two parts of this are card type and amount.

What I want to do is for each Business Date group, below the list of transactions, display a totals summary which would look something like:

[date]

Transaction 1 Visa ...... amount .....

Transaction 2 Debit ...... amount .....

Transaction 3 Visa ...... amount .....

Transaction 4 Debit ...... amount .....

Transaction 5 Debit ...... amount .....

Transaction 6 Discover ...... amount .....

Transaction 7 Gift Card ...... amount .....

Transaction 8 Visa ...... amount .....

Transaction 9 Discover ...... amount .....

Transaction 10 Visa ...... amount .....

Summary of totals for [date]

Visa - $xxxx.xx

Discover - $xxxx.xx

Debit - $xxxx.xx

...

Total - $xxxx.xx

Preferably getting each value programmatically instead of manually setting up each cell for each card. I've seen some answers on the totals expressions side but not the distinct values part and those answers would have me manually set up each individual cell.

4

1 回答 1

0

由于您希望每个日期都有一个页面,您可以将原始表格放在 a 内Rectangle并按日期对矩形进行分组。这将允许您定义分页符以获取每个交易日的单个页面,但您也可以根据您的偏好在单个页面上设置多天。
您应该能够从表中删除按日期分组,因为它只会从矩形继承分组。接下来,您可以在原始表格下方(矩形内)添加第二个表格,并按卡片类型定义新的行组。因为您的矩形已经按日期对数据进行分组,这将再次被继承,您应该Sum为每个总计获得正确的值。

我希望这可以为您解决问题,如果它不只是发表评论,我会在必要时进行编辑。

于 2015-10-30T15:30:45.380 回答