Forum Discussion
Jwood993
4 years agoFrequent Visitor
Help to conditional format text in a specific Column
Hi I want to achieve something on my report where the data will conditional format for any text value that is repeated more than once. I want this to highlight to the viewer that the text is appearin...
amitchandak
4 years agoSuper User
Jwood993 , Create a measure
color =
var _cnt = countx(filter(allselected(Table) , [Name] =earlier([Name]) ), [Name])
return
if(_cnt >1, "Green" , "White")
Use this in conditional formatting, using field value option
How to do conditional formatting by measure and apply it on pie?
https://www.youtube.com/watch?v=RqBb5eBf_I4&list=PLPaNVDMhUXGYo50Ajmr4SgSV9HIQLxc8L
https://community.powerbi.com/t5/Community-Blog/Power-BI-Conditional-formatting-the-Pie-Visual/ba-p/1682539
Jwood993
4 years agoFrequent Visitor
Hi when editing it comes up with some error
- The main sheet is called "Convert" but Store Name is a header in that sheet