Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a field parameter slicer in Power BI set to multi-select mode. The slicer includes metrics like Canada_Profit, France_Profit, Germany_Profit, Maxico_Profit. Same using in newcard.
On the source page, I display a card visual showing the selected field parameter dynamically. When I drill through to a second page, I want to pass the selected card's country(e.g., "Canada" or "France") to display its information dynamically on the drillthrough page.
From:
To:
Solved! Go to Solution.
Hi @Tan008
To pass the selected country from your field parameter slicer to a drillthrough page, follow these steps:
text
Selected Profit =
SWITCH(
TRUE(),
SELECTEDVALUE('YourCountryTable'[Country]) = "Canada", SUM(YourTable[Canada_Profit]),
SELECTEDVALUE('YourCountryTable'[Country]) = "France", SUM(YourTable[France_Profit]),
BLANK()
)
************************************************
This setup allows dynamic filtering based on the selected country and ensures proper drillthrough functionality. Let me know if you need further assistance!
If the above information helps you, please give us a Kudos and marked the Accept as a solution.
Best Regards,
Community Support Team _ C Srikanth.
Hi @Tan008
To pass the selected country from your field parameter slicer to a drillthrough page, follow these steps:
text
Selected Profit =
SWITCH(
TRUE(),
SELECTEDVALUE('YourCountryTable'[Country]) = "Canada", SUM(YourTable[Canada_Profit]),
SELECTEDVALUE('YourCountryTable'[Country]) = "France", SUM(YourTable[France_Profit]),
BLANK()
)
************************************************
This setup allows dynamic filtering based on the selected country and ensures proper drillthrough functionality. Let me know if you need further assistance!
If the above information helps you, please give us a Kudos and marked the Accept as a solution.
Best Regards,
Community Support Team _ C Srikanth.
@Deku I tried your suggestion, but it’s not working. I have a field parameter slicer that I’m also using on new cards, which are created dynamically based on measures. On Page 2, I need to set up drillthrough functionality to pass the individual measures so that Page 1 can successfully drill through to Page 2.
You would need to use the new card visual, with small mutilples by country, with a profit measure. Then you will have a country filter context that can be used for drillthrough
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
20 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |