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 slicer with 4 items. Eg: x,y,z,and o.
Requirements:
How can I accomplish this?
Solved! Go to Solution.
Hi @Anonymous ,
You can use visual level filter:
Measure = IF(ISFILTERED(Table2[category]),IF(MAX(Table2[category])="o",1,IF(MAX(Table2[category])= MAX(Table1[Category]),1,0)),1)
Please refer to the pbix file.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
I can't use another table as slicer in this case. The slicer should behave normally with all other visuals except the table.
Hi @Anonymous ,
The normal solution for your case is creating a disconnected table with these slicer value as mentioned by amitchandak.
The detailed solution depends on your data model. Would you please show us sample pbix file, Then there may be a solution to your case.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Hi @Anonymous ,
You can use visual level filter:
Measure = IF(ISFILTERED(Table2[category]),IF(MAX(Table2[category])="o",1,IF(MAX(Table2[category])= MAX(Table1[Category]),1,0)),1)
Please refer to the pbix file.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Thanks.. It worked
@Anonymous , prefer an independent table for these values. Then you can have a measure like
measure =
var _val = selectedvalue(Dim[Col])
return
if(_val = "o", calculate(sum(Table[Value]), filter(Table, Table[Col] <> _val)) , calculate(sum(Table[Value]), filter(Table, Table[Col] = _val)))
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!