If (sum({command.casecount), {command.courtType}) = 0) Then 0
Else
Sum({Command.CaseDayCount}, {Command.CourtType}) / Sum({Command.CaseCount}, {Command.CourtType}) * 100
If (sum({command.casecount), {command.courtType}) = 0) Then 0
Else
Sum({Command.CaseDayCount}, {Command.CourtType}) / Sum({Command.CaseCount}, {Command.CourtType}) * 100
I did the following and it worked:
=Switch(Sum(Fields!NewCaseCount.Value, "TimelinessNew")=0,1,
1=1,Sum(Fields!CaseWithinBusinessDayCount.Value, "TimelinessNew")/
Sum(Fields!NewCaseCount.Value, "TimelinessNew"), Fields!CourtType.Value, "TimelinessNew") * 100
16 People are following this question.