I am working on a SSRS report and in this report I have multiple types of accounts for our users. I obviously want to sum the total balance of certain accounts, but since there are multiple I am trying to specify the sum for each of these accounts. Like, AccountTypeA total is ### and AccountTypeB total is ###. I am building an expression but so far this is what I have:
IIF(Fields!AcctNum.Value Like "*.001"), True
I don't know what;s the "else" command when that field is true so it sums the balance I want for each type. Any help would be appreciated; I am new working with SSRS :). Thanks in advance.