Forum Discussion

hobosapien's avatar
hobosapien
Icon for Helper I rankHelper I
1 year ago
Solved

Adding % format to card visual measure with conditional formatting

I have applied conditional formatting to a measure that's being used in a basic card visual. However, if I attempt to format this by enclosing the measure in FORMAT() the conditional formatting does...
  • danextian's avatar
    1 year ago

    Hi hobosapien 

    Question: why is your measure more than 1. If formatted to percentage that would be 9585% and not 95.85%. That aside, select the measure and then format it to % from the contextual tab that will appear. Also, if you need to show 95.85%, modify your measure to this:

    AVG EVAL =
    DIVIDE (
        CALCULATE ( AVERAGE ( f_EvaluationScores[Score] ), d_Dates[Year] = 2024 ),
        100
    )