reporting services - Count if SSRS in textbox -
i have scenario need calculate percentage based on - no of records value/ total no of records. going textbox in header. trying following keep getting error saying "argument not specified parameter falsepart of pulbic function iif.
can shed light on please?
=count((iif((fields!confirmed.value, "kpi_calculation")= true,1,nothing)),"kpi_calculation") /count(fields!confirmed.value, "kpi_calculation")
thanks.
this worked me in simple test:
=sum(iif(fields!confirmedvalue.value, 1, 0), "kpi_calculation") / countrows("kpi_calculation")
it looks in above example you're declaring scope many times , hence getting syntax error.
Comments
Post a Comment