The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi there,
I have a column called [result_value] that has multiple rows, for example, the most common row is "Art & Design" there are 12 rows with that specific value, I want a % calculated from that.
It looks quite simple but I haven't found a way to do it surprisingly. I want to see the total % of the top value in comparison to the rest of the entries, not just specifically "Art & Design", as there might be other values in future that surpass it.
Solved! Go to Solution.
Hi @Anonymous
This should work in a cadr visual
Most Common % =
VAR CountAll =
COUNTROWS ( TableName )
VAR ValuesFrequency =
ADDCOLUMNS (
TableName,
"@Frequency",
COUNTROWS (
CALCULATETABLE ( TableName, ALLEXCEPT ( TableName, TableName[result_value] ) )
)
)
VAR MaxFrequency =
MAXX ( ValuesFrequency, [@Frequency] )
RETURN
DIVIDE ( MaxFrequency, CountAll )
Hi @Anonymous
This should work in a cadr visual
Most Common % =
VAR CountAll =
COUNTROWS ( TableName )
VAR ValuesFrequency =
ADDCOLUMNS (
TableName,
"@Frequency",
COUNTROWS (
CALCULATETABLE ( TableName, ALLEXCEPT ( TableName, TableName[result_value] ) )
)
)
VAR MaxFrequency =
MAXX ( ValuesFrequency, [@Frequency] )
RETURN
DIVIDE ( MaxFrequency, CountAll )
@Anonymous
The last part use CountAll not the table name
Apologies @tamerj1 I'm not sure why I did that... I must have read it wrong, anyway it works now greatly appreciate it.
@Anonymous
Please do not apologies. It was actually my mistake. Please accept my appology and thank you for marking my reply as acceptable solution.
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |