Forum Discussion
Conditional formatting help on count
- Anonymous4 years ago
Hi sameergupta60 ,
Please try this measure:
Measure = VAR _maxrcc = MAXX(SUMMARIZE('Table','Table'[Tower Name],"rcc",[RCC]),[rcc]) VAR _colour = IF([RCC]-7>[Block Works]&&[RCC]=_maxrcc,"Red","Green") RETURN _colourBest Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi sameergupta60 ,
Please try this measure:
Measure =
VAR _maxrcc = MAXX(SUMMARIZE('Table','Table'[Tower Name],"rcc",[RCC]),[rcc])
VAR _colour =
IF([RCC]-7>[Block Works]&&[RCC]=_maxrcc,"Red","Green")
RETURN
_colour
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Dear Team,
this solution work on the tower level summary.
but when we add the same logic to the project summary it is not showing results properly.
if we see at the project level total of 13 the block work must be red but it is showing green.
Can please share logic for project level
- Anonymous3 years agoNot applicable
Hi sameergupta60 ,
Would you please consider sharing a sample file for testing, that would be helpful, thanks in advance!
Best Regards,
Gao
Community Support Team- sameergupta603 years agoHelper IV
Hi,
Please download the sample file from below link.
Regards,
Sameer
- Anonymous3 years agoNot applicable
Hi sameergupta60 ,
These two visual effects have different calculation contexts, and you need to modify the formula according to the actual situation. Please try this measure.
BWNEWBICFzone = VAR _maxrcc = MAXX ( SUMMARIZE ( 'L1', 'L1'[ProjectName], "rcc", COUNT('L1'[New RCC]) ),[rcc] ) VAR _colour = IF ( COUNT('L1'[New RCC]) - 7 > COUNT('L1'[BW2])&&COUNT('L1'[New RCC])=_maxrcc, "Red", "Green" ) RETURN _colourBest Regards,
Gao
Community Support Team