Forum Discussion
StuartSmith
2 years agoPower Participant
Measure for Table Visual to Display Column Values
I have a table visual currently with 3 columns. Region = Data Table Column Within 35 Days = Measure that divides the number of rows with a specific value by the total number of rows. KPI Status...
- 2 years ago
Try like this:
Create a measure as below to check values are available to the measureIs Data Available = IF(ISBLANK([KPI Status]) && ISBLANK([Within 35 Days]) , 0,1)Then put this measure as a visual level filter . After that filter with is 1.
If is blank not work try with [KPI Status] = ""
Nilupul
2 years agoFrequent Visitor
Try like this:
Create a measure as below to check values are available to the measure
Is Data Available = IF(ISBLANK([KPI Status]) && ISBLANK([Within 35 Days]) , 0,1)
Then put this measure as a visual level filter . After that filter with is 1.
If is blank not work try with [KPI Status] = ""
StuartSmith
2 years agoPower Participant
Thanks, I had to change the measure a bit, but your solution gave me a base code to get it working. 👍