Forum Discussion
refint650
2 years agoHelper III
adding text to measure
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:1...
- 2 years ago
yourMeasure =
var sumOfReports = [*reportSumMeasure*]
var percentOfReports = [*reportPercentMeasure*]
return sumOfReports & " (" & FORMAT(percentOfReports, "0.0%") & "% of Total Reports)"
arava
2 years agoRegular Visitor
yourMeasure =
var sumOfReports = [*reportSumMeasure*]
var percentOfReports = [*reportPercentMeasure*]
return sumOfReports & " (" & FORMAT(percentOfReports, "0.0%") & "% of Total Reports)"