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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.