Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

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%...
  • v-yuta-msft's avatar
    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.