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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
newphoto
Regular Visitor

Filter Table depending on value from a Donuts charts

I have spent an hour finding a solution for my problem,  but not getting there....

I have my report: 

problem.jpg

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

When i choose for example 'Open' from 'Overdue Tickets' Charts, i want to see in table just the value where 'Finish until' date is smaller as today.

 

problem2.jpg

When i choose 'Open' from  'Next 7 Days Tickets' Chart, i want to see in the table just value with 'Finish until' date  between tomorrow and tomorrow+7 Days. 

For the charts i created two measures where i use Filter function to select just the values with the desired date.

But i don't know how to filter the table depending on the date from my Charts.

Any ideas?

Thank a lot

1 ACCEPTED SOLUTION
v-sihou-msft
Microsoft Employee
Microsoft Employee

@newphoto

 

In this scenario, when you click in the Donut, only the category you selected will be applied as fitler on other visuals. So your table visual will only be filtered with "OPEN", it can never determine you click it from the "Overdue" or "Next 7 days" charts. The "Next 7 days" filter only works within your measure.

 

For your requirement, you should add a column to tag if the date in current row is within "Next 7 days".

 

Date Range =
IF (
    ( Table[Finish Until] - TODAY () )
        <= 0,
    "UP TO TODAY",
    IF (
        ( Table[Finish Until] - TODAY () )
            > 0
            && ( Table[Finish Until] - TODAY () )
                <= 7,
        "NEXT 7 DAYS",
        "OTHER"
    )
)

 

 

Then you can populate above colum into a slicer to filter the Donut and Table visual.

 

Regards,,

View solution in original post

3 REPLIES 3
v-sihou-msft
Microsoft Employee
Microsoft Employee

@newphoto

 

In this scenario, when you click in the Donut, only the category you selected will be applied as fitler on other visuals. So your table visual will only be filtered with "OPEN", it can never determine you click it from the "Overdue" or "Next 7 days" charts. The "Next 7 days" filter only works within your measure.

 

For your requirement, you should add a column to tag if the date in current row is within "Next 7 days".

 

Date Range =
IF (
    ( Table[Finish Until] - TODAY () )
        <= 0,
    "UP TO TODAY",
    IF (
        ( Table[Finish Until] - TODAY () )
            > 0
            && ( Table[Finish Until] - TODAY () )
                <= 7,
        "NEXT 7 DAYS",
        "OTHER"
    )
)

 

 

Then you can populate above colum into a slicer to filter the Donut and Table visual.

 

Regards,,

Thanks a lot. Your help is very much appreciated!

newphoto
Regular Visitor

Any ideas please? 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.

Top Solution Authors