Hi Everyone,
I’m looking for guidance on achieving a dynamic interaction in Power BI, and I’m unsure if it’s fully possible with the current Power BI capabilities.
Here’s what I’m aiming for: I want to set up a report where, if a user selects a cell in a summary table, the details table below will filter to show only the relevant transactions tied to that specific selection. This is especially important for measures in the table, where I need to identify both the column and measure the user selected.
For instance:
If the user clicks on the cell containing “Electronics,” I want to capture that they’ve selected the “Product Category” column.
More crucially, if the selection is on a measure (e.g., the cell showing the value “26” for transactions with a discount), I need the details table to display only those 26 related transactions.
I’m not sure if I’m approaching this the right way, so any guidance on how to identify the selected cell’s column (for fields and measures) or on an alternative method to achieve this dynamic filtering would be appreciated!
When you select a cell in a table you don’t actually select a single cell but rather the entire row on which that cell exists. You can see this in action if you place a measure like
You see the FilterCols table (green box on the right) doesn’t distinguish which particular column was clicked (I clicked on the cell in the red box). This is how table visuals handle interactions in Power BI. The entire row is selected (green box, left).
Even though Power BI doesn’t natively support cell-level interactions, it’s possible to get close to what you want to do with core visuals and some elbow grease. You might consider using Vega.