Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to add in my report a subsummary which shows the SUM of values for a group. Is there a way to do this using expressions? I know this is not coded correctly, but to better explain: =SUM (Fields!check_amount.value, "dataset1") Groupby (Fields!group_number.value, "dataset1") The returned SUM will be shown below the last item that is in that group_number.value. Thank you.

share|improve this question

1 Answer

up vote 0 down vote accepted

I figured it out. It needed to be put into the syntax and then the field used as an expression.

SELECT .source_cde,
.trans_desc,
.trans_amt,
.trans_dte,
.payable_check_dte,
.check_num_num, .group_num, .acct_cde, SUM (trans_amt) sum_amount

FROM *

WHERE (.source_cde IN (@SourceCode)) AND (.acct_cde IN (@AccountCode)) AND (.payable_check_dte is Null) AND (.trans_dte BETWEEN @DateStart AND @DateEnd)

GROUP BY Group_num, source_cde, trans_desc, trans_amt, trans_dte, payable_check_dte, check_num_num, acct_cde

Then in the table itself call on =Sum(Fields!sum_amount.Value)

Thanks to anyone looking into it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.