How to add a subtotal to only 3 out of 4 accounts being grouped on a Balance Sheet

  • I'm creating a balance sheet and I can't get a subtotal for only three specific rows. When I add a subtotal it brings in a subtotal for all rows. For example,

    I have Row 1 as my Cash and Short-Term Investments.

    Row 2, 3, and 4 as my Accounts Receivable, Allowance for Uncollectible, and Allowance for Contractual Adjustments. How can I only add a subtotal to Rows 2,3, and 4 and not include Row 1? Does that make sense?

  • You can include a condition within your aggregate expression which will then be evaluated for each row being aggregated.

    E.g.

    =Sum(Iif(Fields!AccountType.Value = "Cash and Short-Term Investments", 0, Fields!Balance.Value))

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply