Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I'm reaching out to seek your expertise and guidance on implementing a specific functionality within Power BI that resembles the drill-through feature.
Currently, I'm working on a project where I need to create a clickable matrix or table within a Power BI report. The objective is to enable users to click on a value in the matrix or table, which would then redirect them to another report with detailed information related to the selected value.
To provide a bit more context, I'm essentially looking to replicate the drill-through functionality but within a matrix or table visualization, where clicking on a specific cell or value will dynamically redirect users to another report page containing relevant details.
I've explored various options within Power BI, but I haven't been able to find a straightforward solution to achieve this functionality. Hence, I'm reaching out to the community to seek advice, best practices, or any insights on how to implement this feature effectively.
If anyone has experience implementing similar functionality or knows of any resources, tutorials, or Power BI features that could help achieve this goal, I would greatly appreciate your input and guidance.
Thank you in advance for your support and assistance. Your expertise will undoubtedly contribute to the success of this project and help enhance the overall user experience within our Power BI reports.
Hi @AnassEss, let me explain you more on statement-
i have 1st table as Customer having column name "HCP Name", based on this column i want to switch to another report name HCP where HCP report will show all the related details on clicked HCP Name from Customer table.
Q1, where i can create this measeure, on which table.
Q2, how this measeure will be used
Thanks for clarifying:
Q1. Creating the Measure:
Q2. Using the Measure:
I hope it helps you this time 🙂
Can you share the working PBix file for this. it seems confusing for me. as how measure can be used in action ?
I don't have a pbix file with this (The only pbix files i got are confidential) but I can provide some screenshots if that helps you understand the meassures and how to use them:
1. Creation:
In the superior part of the pbix desktop file you find this:
You click there and then here:
2. Afterwards you get a space where you can write the dax meassure and after writing it:
You put it in a column or table as follows: Select the table or column and then select the meassure that you have just created to apply it to the table or column by checking the box of the meassure:
I hope this helps
Hello there,
To navigate between reports, you must first ensure that you have the correct relations between the data in your destination and origin report, once you have ensured that the relations are done correctly in the model view then you may use this dax meassure: ReportNav = SELECTEDVALUE(YourTable[YourField])
If that is not enough you may try: Dettail = CALCULATE(SUM(FactTable[Value]), FactTable[Dimension] = SELECTEDVALUE(DrillThroughTable[Dimension]))