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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
How can you do the following ?, I have a table with 4 columns "Table2" and I want to have a slicer of the table3 with the countries and when selecting "UK", I load in a slicer the data of the UK column of the Table2
https://drive.google.com/file/d/0Bz_yJn-MHA2oNjBHRzBnbUVSZk0/edit
Hi @vazmor,
If my understanding is right, you want to display the UK column's value when you select "UK" in slicer, right? If it is, please create a measure using the formula below.
different country's value = SWITCH(SELECTEDVALUE(Table3[Country]), "UK", MAX(Table2[UK]), "Chinese",MAX(Table2[Chinese]), "US",MAX(Table2[US]))
You will get the expected result as follows.Select Chinese
Select UK
Please download the attachment to review more details.
Best Regards,
Angelia
hello, what I need is that the country slicer generates another slicer with the data of the country column, as well as in the image and that in addition that slicer serves me to filter the table.