Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
I have two slicers on my report (which are based on the same column in the same table, the column contains only text). I want to use the selection of both of these slicers to filter a visual (more secifically the breakdown of a waterfall chart but I guess that's not relevant here). How could I do that?
After some research, this is my approach so far:
1.) create two copies of the table - both slicers are based on one of the copies, and the copies have no relationships.
2.) write two measures:
measure 1 = ALLSELECTED(CopyTable1[mycolumn])
measure 2 = ALLSELECTED(CopyTable2[mycolumn])
3.) that's where I don't know how to proceed. I think I have to somehow combine these two measures and then filter the visual based on this, correct? Or is my approach completely wrong?
Thanks for any hint!
Solved! Go to Solution.
@Anonymous , refer my example to dates, how two independent tables have been used for filter . Here you have to use in clause
calculate(countrows(Table) , filter(table, Table[mycolumn] in ALLSELECTED(CopyTable1[mycolumn]) ))
https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601
@Anonymous , refer my example to dates, how two independent tables have been used for filter . Here you have to use in clause
calculate(countrows(Table) , filter(table, Table[mycolumn] in ALLSELECTED(CopyTable1[mycolumn]) ))
https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
87 | |
82 | |
71 | |
49 |
User | Count |
---|---|
143 | |
120 | |
110 | |
60 | |
57 |