what tools would help to get the cumulative quantity and cumulative value when there are multiple products -see the excel attached
will multi-row formula help?
Solved! Go to Solution.
Hi @vinothkumar,
you are right, you can achieve this with two Multi-Row-Formulas! Take a look:
Settings:
The two important options are:
1) Group by Product Name
2) Values for Rows that don't Exist to Null so that my "isNull"-Check to identify the first value works
Workflow attached. Let me know what you think
Best
Alex
Is the Running Total able to use the starting value from a different column?
I dug deeper into the data and now realize Mutli-Row Formula tool is a better fit in this case. Please ignore my post.
Hi @vinothkumar,
I have adapted the workflow. The only thing that needed to be changed was the starting value in the first Multi-Row-Formula.
IF isNull([Row-1:Cumulative Quantity-By Product])
THEN [Opening Qty] + [Transaction Qty]
ELSE [Row-1:Cumulative Quantity-By Product] +[Transaction Qty]
ENDIF
In the "Then"-Part it was called [Opening Qty Value] before. I replace it with the correct column and that's it.
Workflow attached.
Best
Alex