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! Request now
Hi everyone, Can you please help with following scenario?
Let's say you have a table with agreement ID, Agreement Value. In main report, when we drill through on Agreement ID the drill through report in other page should have list of Agreement IDs having lower Agreement Value compared to the selected Agreement ID .
Solved! Go to Solution.
Hi @Anonymous ,
Create slicer by Agreement ID column and a measure that satisfies the conditions.
slicer = VALUES('Table'[Agreement ID])Lower Value Flag =
IF (
MAX ( 'Table'[Agreement ID] ) < SELECTEDVALUE ( slicer[Agreement ID] ),
TRUE,
FALSE
)
create slicer in drill page
Right click on the selected id to drill down. It will jump to the des page and show the results that fulfill the conditions.
For more details, you can read below document:
Set up drillthrough in Power BI reports - Power BI | Microsoft Learn
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Create slicer by Agreement ID column and a measure that satisfies the conditions.
slicer = VALUES('Table'[Agreement ID])Lower Value Flag =
IF (
MAX ( 'Table'[Agreement ID] ) < SELECTEDVALUE ( slicer[Agreement ID] ),
TRUE,
FALSE
)
create slicer in drill page
Right click on the selected id to drill down. It will jump to the des page and show the results that fulfill the conditions.
For more details, you can read below document:
Set up drillthrough in Power BI reports - Power BI | Microsoft Learn
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 8 | |
| 8 | |
| 7 |