Hi ,
I am building a FetchXML report for online CRM. Below is my requirement :
3 records/rows have same values except for one column (Column D).
Col A | Col B | Col C | Col D |
abc | xyz | pqr | 1 |
abc | xyz | pqr | 2 |
abc | xyz | pqr | 3 |
In report I should display only one row, with Col D = Sum of 3 columns (1+2+3 = 6)
Col A | Col B | Col C | Col D |
abc | xyz | pqr | 6 |
Using Group By on Col A, Col B and Col C I can reduce to a single row but how to get the sum of Col D and display in the row in report.
Please suggest me how to do it.
Thanks.