Forum Discussion

cmajewski's avatar
cmajewski
Frequent Visitor
7 years ago
Solved

Conditional Formatting Quesiton

I noticed in the May 2018 Update of Power BI they changed conditional formatting and added some powerful new features. I should get this menu:   But instead I get this:   I am runnin...
  • d_gosbell's avatar
    d_gosbell
    7 years ago
    You could just creat your column with the actual color name/value that you want, then use the "Field value" option
     
    StatusColor = SWITCH([Status],
    "Started", "Blue",
    "Completed","Green",
    "Pending","Yellow"
    )