Hi thereI am trying to figure out this query below to displaying in the RS:ORDERBY, SECTIONAREA, RATE, VALUE1, AREA1, 'Rate1', $102, AREA1, 'Rate2', $113, AREA2, 'Rate3', $204, AREA2, 'Rate4', $21
I've managed to display into RS as follow by putting grouping for SECTIONAREA field and SUM the VALUE field and turns out ok: AREA1Rate1 | $10Rate2 | $11Total Area1 | $21AREA2Rate3 | $20Rate4 | $21Total Area2 | $41
Now, I want to add extra lines which are basically TAX and TOTAL COST so it will be like this:AREA1Rate1 | $10Rate2 | $11Total Area1 | $21AREA2Rate3 | $20Rate4 | $21Total Area2 | $41TAX | (Total Area1 + Total Area2) * 0.1TOTAL COST | (Total Area1 + Total Area2) * 1.1
Any ideas? I am not sure how to add a new line for handling TAX and TOTAL COST. I can probabaly put every detail as a data set in RS or built another data set and stick in but that but that's defeat the purpose ... I guess.I am appreciated your commment. Thank you