Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello All
I have two numeric measures. In card visual so how i can display like these combination of both measures + custom text
i.e 10 ( 0.6% of Total Reports)
1) Sum of Reports value:10
2) % of Reports. value ( 0.6%)
Solved! Go to Solution.
yourMeasure =
var sumOfReports = [*reportSumMeasure*]
var percentOfReports = [*reportPercentMeasure*]
return sumOfReports & " (" & FORMAT(percentOfReports, "0.0%") & "% of Total Reports)"
yourMeasure =
var sumOfReports = [*reportSumMeasure*]
var percentOfReports = [*reportPercentMeasure*]
return sumOfReports & " (" & FORMAT(percentOfReports, "0.0%") & "% of Total Reports)"