Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
hi, my comapany migration Tableau to PBI.
What I am trying to create is as follows.
there are Call ID, Detail ID & Product
The result I desire is as follows.
but with follow expression, i got anoter result
follow is Expession that i used in Tableau
{Fixed [Call ID] : countd[Detail ID]}
How Can i get correct result? please help.
Solved! Go to Solution.
Power BI does not have a concept of dynamic buckets. You need to bring your own.
N Product Call = {{1},{2},{3}}
Then you can do a cartesian with your Product Names, and add the measure
Detail(#) =
COUNTROWS (
FILTER (
ADDCOLUMNS (
VALUES ( 'Table'[Call ID] ),
"ct", CALCULATE ( COUNT ( 'Table'[Detail ID] ), REMOVEFILTERS ( 'Table'[Product] ) )
),
[ct] = SELECTEDVALUE ( 'N Product Call'[Value] )
)
)
See attached
Power BI does not have a concept of dynamic buckets. You need to bring your own.
N Product Call = {{1},{2},{3}}
Then you can do a cartesian with your Product Names, and add the measure
Detail(#) =
COUNTROWS (
FILTER (
ADDCOLUMNS (
VALUES ( 'Table'[Call ID] ),
"ct", CALCULATE ( COUNT ( 'Table'[Detail ID] ), REMOVEFILTERS ( 'Table'[Product] ) )
),
[ct] = SELECTEDVALUE ( 'N Product Call'[Value] )
)
)
See attached
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
88 | |
87 | |
35 | |
35 |
User | Count |
---|---|
153 | |
99 | |
85 | |
63 | |
54 |