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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi Team,
I have one column called TraderName in my dataset and now i need the 3 slicers using the the same TraderName. if suppose in slicer 1 if i selected TraderA, in slicer 2 if i selected TraderB, in slicer3 if i selected TraderC then i need to show the TradeA,TradeB,TradeC related data in my Table grid or chart visulazations.
Could you please let me know any one is it possible because if i am created the 3 slicers using same column but as per our client they required 3 slicers instead of 1 slicer because they required the sorting order based on slicers on chart.
Solved! Go to Solution.
@Narukkp
For your requirement, it is not possible to used 3 slicers on 1 column, so you could create 3 summarize tables, see my sample pbix:
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Narukkp
For your requirement, it is not possible to used 3 slicers on 1 column, so you could create 3 summarize tables, see my sample pbix:
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous thank you for your reply.But I need to sum of the sales instead of individual sales .
You can create a measure for the sum with my sample.
Measure = SUM('Table A'[SALES])+SUM('Table B'[SALES])+SUM('Table C'[SALES])
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Narukkp , It depends on usages. If they are part of table, you can use those columns for the slicer. If you need only for measures not to display different name together you can join with the same dimension and use userelation
example
Else you might have to create three tables and use. You can use copy table in edit query
Hi,
Thank you @amitchandak . I have total only table that contains Trade Name, Date, Sales... But here my question is if i take the 3 slicers using same Trade Name column then how we can select the diffrent values on second & third slicer because value will be same on slicer 2 & slicer 3 when i am selected the value in Slicer 1. For your reference PFB screens of Default load & selection screen shot. In second screen shot i reuqired i am able to select the TradeA in slicer1, TradeB in slicer2 & TradeC in slcier3 then finally i need to display these 3 tradenames related data in table grid.
@Narukkp , Create three trader tables and do not join them with your table. Now create slicer from them. As they are not joined use them in filter clause of measure using OR to create the required filter
Like
Measure =
var _T1 = maxx(allselected(Trader1),Trader1[Trader1])
var _T2 = maxx(allselected(Trader2),Trader1[Trader2])
var _T3 = maxx(allselected(Trader3),Trader1[Trader3])
return
calculate([mes1], filter(Table,Table[Trader] =_T1 || Table[Trader] =_T2 || Table[Trader] =_T3))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.