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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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] )
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!