Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I am creating the matrix visulization where i need to change rows dynamically based on value from slicer or filter.
Solved! Go to Solution.
You can create measures with ALLSELLECTED function.
Here is a sample:
Measure1 =
CALCULATE(
MAX('Table2'[Value]),
ALLSELECTED('Table2'[ID]))
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
You can create measures with ALLSELLECTED function.
Here is a sample:
Measure1 =
CALCULATE(
MAX('Table2'[Value]),
ALLSELECTED('Table2'[ID]))
If you still have some question, please don't hesitate to let me known.
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!