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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
hi all,
I have a visual that sort of looks like the below
I developed a measure for this and placed in in the y axis
CALCULATE (
COUNT( 'Table'[Name] ),
FILTER (
ALL ( 'Table' ),
'Table'[Bucket] <= MAX ( 'Table'[Bucket] )
),
VALUES ( 'Table'[Column1] )
)
The measure works appropriately when I have a slicer populated with a value from Column 1 selected. However, I get nonsense results when I add a slicer for Column 3 and try to slice by that metric. I should add, for every distinct value of Column 1 there tends to be just value of Column 3. But Column 3 can contain many values of Column 1.
Thanks!
Solved! Go to Solution.
CALCULATE (
COUNT( 'Table'[Name] ),
FILTER (
ALLSELECTED( 'Table' ),
'Table'[Bucket] <= MAX ( 'Table'[Bucket] )
),
VALUES ( 'Table'[Column1] )
)
CALCULATE (
COUNT( 'Table'[Name] ),
FILTER (
ALLSELECTED( 'Table' ),
'Table'[Bucket] <= MAX ( 'Table'[Bucket] )
),
VALUES ( 'Table'[Column1] )
)