Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a text card that changes the values based on slicers selected.
if there are no filters, the text says x
if a slicer is filtered, text says y.
What I am struggling with is how to change the text dynamically if more than one slicers (columns) are filtered.
Solved! Go to Solution.
Hi @hellojb ,
Based on your description, I have creeated a simple sample:
I created two slicers:
Try the measure:
Measure = IF( SELECTEDVALUE('Table'[Column1])=BLANK()&&SELECTEDVALUE('Table (2)'[Column1])=BLANK(),"x","y")
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @hellojb ,
Based on your description, I have creeated a simple sample:
I created two slicers:
Try the measure:
Measure = IF( SELECTEDVALUE('Table'[Column1])=BLANK()&&SELECTEDVALUE('Table (2)'[Column1])=BLANK(),"x","y")
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@hellojb See if this helps: The Most Amazing, Mind Blowing Dynamic Slicer Titl... - Microsoft Power BI Community
Hello @hellojb ,
You can use below dax function
what about if there are mutiple columns filtered?
U can use
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.