How to sum up row value

0
TotalTarget = Tar1+Tar2+Tar3+Tar4 I've tried to use microflow but it can only sum up column but not row, anyone can help Thanks a lot.  
asked
2 answers
3

Hi Yi Jia,

You can add an attribute 'TotalTarget' in your Entity, you can make it a calculated attribute, and write the logic, in the microflow which add Attr1+ Attr2+Attr3+.....

and then show it in a table.

Hope it helps!

answered
2

Hi, 

I believe this is the List of target Objects, displayed in order of rowid. 

In this case i would say iterate over the loop and then calc using formula like below : 

$totaltarget= $iterator/tar + $totaltarget

 

answered