Forum Discussion
dataforlife
3 years agoFrequent Visitor
Conditional formatting per group
I am trying to do conditional formatting per group with the following logic, but it does not seem to work. The logic of my measure should be as follows: if group x has y amount of work, then it sho...
- 3 years ago
dataforlife I'm confident that is a data quality issue. Please perform trim and clean steps in PQ and then check. If it still doesn't work, please share a sample pbix file, and remove sensitive information before sharing.
parry2k
3 years agoSuper User
dataforlife it should work, just to make sure, the column for Team you are using on the rows is the one you are checking in the measure, I'm sure that is the case but just double checking.
dataforlife
3 years agoFrequent Visitor
I tried debugging whether it is able to find the team and color, but it does not seem to work. It simply does not do anything. Do you have an idea why? The dax function does not color any field.
Example code:
Measure Teamcolor = if(SELECTEDVALUE(Team[Name]) = "South", "Green", "Red")