Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Drill through based on Same Column Field

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 .

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

vkongfanfmsft_0-1707447653884.png

vkongfanfmsft_1-1707447697818.png

Right click on the selected id to drill down. It will jump to the des page and show the results that fulfill the conditions.

vkongfanfmsft_2-1707447783813.pngvkongfanfmsft_3-1707447809294.png

 

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.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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

vkongfanfmsft_0-1707447653884.png

vkongfanfmsft_1-1707447697818.png

Right click on the selected id to drill down. It will jump to the des page and show the results that fulfill the conditions.

vkongfanfmsft_2-1707447783813.pngvkongfanfmsft_3-1707447809294.png

 

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.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.