I have created a Bot that works correctly that saves on the drive a pdf single receipts of the receipts table. Here is the expression of the virtual column. CONCATENATE([DATE],[channel],[TEAM NAME],[TOTAL PHOTO])
Here is the expression of the table Slice:
[ENTRY CODE]= MINROW(“Photos”, “_ROWNUMBER”, [DataPerformChannel]=[_THISROW].[DataPerformChannel])
PDF is getting generated in some way like this.
"GroupForReports" Slice table
1. 06/05/2023, RINTU, FLIPKART,100
2. 06/05/2023, PANKAJ,FLIPKART,100
3. 06/05/2023, RINTU, FLIPKART,50
4. 06/05/2023, PANKAJ,AMAZON,115
The desired result should look like this:
"GroupForReports" Slice table
1. 06/05/2023, RINTU,FLIPKART,150
2. 06/05/2023, PANKAJ,FLIPKART,100
3. 06/05/2023, PANKAJ,AMAZON,115
I have tried with this code written in a Google doc Template
<<START:FILTER(GroupForReports, [DATE] = TODAY())>><<[DATE]>>
<<[TEAM NAME]>>
<<[CHANNEL]>>
<<[TOTAL PHOTO]>><<END>>
It simply sorts but does not group






