How to get a summary table

I have created a table that contains the following fields:

[IDRECEIPT] [NUMBER], [DATE], [IDMEDICO], [IDPATIENTE], [METHOD], [PAYMENT], [MACHINERY], [IDPRESTMEDICO], [PRICE]

I would like to obtain a view that in a row groups data showing the same date. Example:

[DATE] 16/10/2021 - Sum ([PRICE]): โ‚ฌ 100.00 - Min ([NUMBER]): 1 - Max ([NUMBER]) 5 - SumIf ({condition If [PRICE]}): โ‚ฌ 80.00 - SumIf ({condition If [PRICE]}): โ‚ฌ 20.00

[DATE] - Sum([PRICE]) - Min([NUMBER]) - Max([NUMBER]) - SumIf([PRICE]) -SumIf([PRICE])
1/10/21------โ‚ฌ 100,00----------1------------------------5-----------------------โ‚ฌ 80,00--------------โ‚ฌ 20,00
2/10/21------โ‚ฌ 150,00----------6------------------------7-----------------------โ‚ฌ 90,00--------------โ‚ฌ 60,00
8/10/21------โ‚ฌ 350,00----------8------------------------15----------------------โ‚ฌ 200,00------------โ‚ฌ 150,00
9/10/21------โ‚ฌ 80,00----------16------------------------16-----------------------โ‚ฌ 80,00-------------โ‚ฌ 0,00

0 1 107
1 REPLY 1

A summary table would first need to be generated for the view to use. You can create process(s) in AppSheet to create the desired rows and data you need. There are two general ways:

  1. Keep the summary table updated with every new row and/or update made to the source table. Use actions on save activity to apply updates to the summary table.

  2. Create an Automation process to generate the table as needed. This could be a Scheduled Bot or a Data Change Bot ran on request.

I hope this helps!

Top Labels in this Space