Forum Discussion
ABC11
4 years agoResolver I
Row-wise total base on select date
Hi All,
I would like to do rowwise total base on selected date
LINE_Total = sumx(Report,
Report[APPR_LINE]+
Report[ATTEST_LINE]+
Report[COMP_LINE]+
Report[POSTED_LINE]+
Report[REJECT_LINE]+
Report[RESUBMIT_LINE]+
Report[SUBMIT_LINE]+
Report[WAPPR_LINE])
This yellow color row wise line total is incorrect.
Thanks
Thank you for your time.
I did find sloution other way
4 Replies
- lbendlinSuper User
LINE_Total = Report[APPR_LINE]+ Report[ATTEST_LINE]+ Report[COMP_LINE]+ Report[POSTED_LINE]+ Report[REJECT_LINE]+ Report[RESUBMIT_LINE]+ Report[SUBMIT_LINE]+ Report[WAPPR_LINE]