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! Learn more
Hi , everyone, Have a report, need according to Type column value to drill through to different report,
when Type is Stock, will drill through to report 1, this report show east and west sales,
when Type is Market, will drill through to report 2, this report will show north and south sales
how to setting Drill through and how to conditional drill-through report,
Thank you
Solved! Go to Solution.
@wangjuan303 , You need to use drill through button for that , Create a measure to return page and use that measure in fx of action
page measure = Switch ( True() ,
max(Table[Type]) ="Stock" , "Page1",
max(Table[Type]) ="Market" , "Page2",
"Page3"
)
refer
https://visualbi.com/blogs/microsoft/powerbi/conditionally-drill-action-power-bi/
https://www.youtube.com/watch?v=4Qy-bksqExI
@wangjuan303 , You need to use drill through button for that , Create a measure to return page and use that measure in fx of action
page measure = Switch ( True() ,
max(Table[Type]) ="Stock" , "Page1",
max(Table[Type]) ="Market" , "Page2",
"Page3"
)
refer
https://visualbi.com/blogs/microsoft/powerbi/conditionally-drill-action-power-bi/
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.