Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi all,
I'm trying to get the most repeaed value on the same row, but on different colums, any idia of how to do this?
My table:
Name | ID_1 | ID_2 | ID_3 | Result |
aa | XXX1 | XX3 | XXX1 | XX1 |
bb | ZZ2 | ZZ2 | ZZ2 | |
cc | MM3 | MM3 |
trying to get column "Result" counting the most repeated value on ID columns
Thanks!!
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Result CC =
VAR currentname = Data[Name]
VAR idone = Data[ID_1]
VAR idtwo = Data[ID_2]
VAR idthree = Data[ID_3]
VAR newtable =
GENERATE (
CALCULATETABLE ( VALUES ( Data[Name] ), Data[Name] = currentname ),
CALCULATETABLE (
UNION ( VALUES ( Data[ID_1] ), VALUES ( Data[ID_2] ), VALUES ( Data[ID_3] ) )
)
)
VAR idonecount =
COUNTROWS ( FILTER ( newtable, Data[ID_1] <> BLANK () && Data[ID_1] = idone ) )
VAR idtwocount =
COUNTROWS ( FILTER ( newtable, Data[ID_1] <> BLANK () && Data[ID_1] = idtwo ) )
VAR idthreecount =
COUNTROWS (
FILTER ( newtable, Data[ID_1] <> BLANK () && Data[ID_1] = idthree )
)
VAR maxcount =
MAX ( MAX ( idonecount, idtwocount ), idthreecount )
RETURN
SWITCH (
maxcount,
idonecount, Data[ID_1],
idtwocount, Data[ID_2],
idthreecount, Data[ID_3]
)
Hi,
Please check the below picture and the attached pbix file.
Result CC =
VAR currentname = Data[Name]
VAR idone = Data[ID_1]
VAR idtwo = Data[ID_2]
VAR idthree = Data[ID_3]
VAR newtable =
GENERATE (
CALCULATETABLE ( VALUES ( Data[Name] ), Data[Name] = currentname ),
CALCULATETABLE (
UNION ( VALUES ( Data[ID_1] ), VALUES ( Data[ID_2] ), VALUES ( Data[ID_3] ) )
)
)
VAR idonecount =
COUNTROWS ( FILTER ( newtable, Data[ID_1] <> BLANK () && Data[ID_1] = idone ) )
VAR idtwocount =
COUNTROWS ( FILTER ( newtable, Data[ID_1] <> BLANK () && Data[ID_1] = idtwo ) )
VAR idthreecount =
COUNTROWS (
FILTER ( newtable, Data[ID_1] <> BLANK () && Data[ID_1] = idthree )
)
VAR maxcount =
MAX ( MAX ( idonecount, idtwocount ), idthreecount )
RETURN
SWITCH (
maxcount,
idonecount, Data[ID_1],
idtwocount, Data[ID_2],
idthreecount, Data[ID_3]
)
Hi Kim, thanks for your help, it works perfectly!!!
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
11 | |
9 | |
6 |