Workflow Template Totals Row

I have a workflow template that provides a list of all sales for the last month. I want the last row to be a totals row for all columns so I made a separate start expression

<<Start:Table[Key ID]>><<TEXT(Grand Total)>>

Then each cell has a SUM(Select, however, itโ€™s returning a separate row for each sale, instead of one row for all. The expression Iโ€™m using is

<<SUM(SELECT(Payments[Amount],[Client] = โ€œClientโ€))>>

Any ideas what Iโ€™m doing wrong?

0 4 127
4 REPLIES 4

Please post a screenshot of the whole template.

Template

Grand Total Row Outputting for each sale rather than once for all sales

<<START:Payments[Log ID]>>

is telling the system to create a row in the template for each row in the Payments table. It looks like if you just removed that second Start expression (and the End), then itโ€™ll do what you want.

Also, you can replace

<<TEXT( Grand Total)>>

With just:

Grand Total

Iโ€™d advise reviewing the Start expressions help articles another time.

Thatโ€™s what it was. Thanks so much!!!

Top Labels in this Space