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.
I have a table for simple purposes lets say three columns:
A = Date
B = Total purchased
C = Color
Date is on X -axis
B is a column with how many items got purchased on this date
C is what color the items were.
I want a line to change dynamic when i change C in the filter..
But I can only get it to change both B & C at the same time.
Where am I going wrong?
Solved! Go to Solution.
Hi @Dauan
You may create a slicer table: Slicer = DISTINCT(Data[C]).Make sure there's no relationship between them.Then you may create a dynamic measure for C. Drag the Slicer table's column C to visual level filter or use it as slicer.Attached the sample file for your reference.
Measure =
CALCULATE (
COUNT ( Data[C] ),
FILTER ( Data, Data[C] IN VALUES ( 'Slicer'[C] ) )
)
Regards,
Cherie
Hi @Dauan
You may create a slicer table: Slicer = DISTINCT(Data[C]).Make sure there's no relationship between them.Then you may create a dynamic measure for C. Drag the Slicer table's column C to visual level filter or use it as slicer.Attached the sample file for your reference.
Measure =
CALCULATE (
COUNT ( Data[C] ),
FILTER ( Data, Data[C] IN VALUES ( 'Slicer'[C] ) )
)
Regards,
Cherie
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 |
|---|---|
| 67 | |
| 59 | |
| 45 | |
| 19 | |
| 15 |