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
AnAnalyst
Helper III
Helper III

KPI to reflect total from table that has visual level filters

I am trying to have my KPI show the same values as the table on my dashboard. I have filters on the second visual below.

Example Files

 

Sample 2.PNG

Version 0 is Actuals/Plan - The others are Forecast versions. I would like to be able to toggle between forcast versions (will always have version 0 selected)

 

 

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @AnAnalyst 

Create a measure

Measure =
CALCULATE (
    [FY Fcst vs FY Plan],
    FILTER (
        ALLSELECTED ( Sheet1[Project] ),
        [Fcst vs Plan] < 0
            && [FY Fcst vs FY Plan] > 0
    )
)
Capture12.JPG
Best Regards
Maggie
Community Support Team _ Maggie Li
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

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @AnAnalyst 

Create a measure

Measure =
CALCULATE (
    [FY Fcst vs FY Plan],
    FILTER (
        ALLSELECTED ( Sheet1[Project] ),
        [Fcst vs Plan] < 0
            && [FY Fcst vs FY Plan] > 0
    )
)
Capture12.JPG
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Thank you!

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.

Top Solution Authors