Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 91 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |