Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
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 April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
71 | |
70 | |
42 | |
42 |
User | Count |
---|---|
49 | |
42 | |
29 | |
28 | |
27 |