Forum Discussion

ringovski's avatar
ringovski
Helper II
4 years ago
Solved

Color Formatting

Hi All, I am trying to format a % measure called "Learning Percentage Completed" with red when it's >50 and <75 then with orange when its greater than 75. I've created a new measure called "color me...
  • amitchandak's avatar
    4 years ago

    ringovski , This seems fine .

     

    Try this

     

    Color Measure = Switch( True() ,

    [Learning Percentage Completed] >.5 && [Learning Percentage Completed]  <.75, "Red",

    "Orange"

    )

     

     

    If this does not help
    Can you share a sample pbix after removing sensitive data.