Forum Discussion
Anonymous
6 years agoNot applicable
Creating Circle Indicators with UNICHAR
Hi, I need to publish a report with circles indicator with the following conditions: -> If Coverage% is 90%-100% then it should return blue light on Coverage Indicator -> If Coverage% is 60%...
- 6 years ago
Anonymous ,
As mentioned above, please modify your measure using dax below:
Coverage Indicator = SWITCH ( TRUE (), ISBLANK ( [Coverage %] ), BLANK (), [coverage %] < 0.59, [RedLight], [Coverage %] < 0.89, [Black Light], [Coverage %] < 1, [blue light] )Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
vik0810
6 years agoResolver V
You are using 59.00 for 59% in your measure and so on. But 59% is 0.59 and not 59.00