Forum Discussion
rodrigof
8 years agoNew Member
Summarize text columns with conditional formatting
Hi So I have a text column that will have the following values one of the following values(green, red, yellow) per row. I'd like to see if I can summarize that data as follows. Algorithmic...
v-juanli-msft
8 years agoCommunity Support
Hi rodrigof
For your requirements 1,2, I can get the results as expected.
Create a calculated column
count = CALCULATE(COUNT(Table1[color]),ALLEXCEPT(Table1,Table1[color]))
Measures
max = CALCULATE( MAX([count]),ALL(Table1)) final text = CALCULATE(MAX([color]),FILTER(ALL(Table1),[count]=[max]))
Then edit conditional formatting
Best Regards
Maggie