The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
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)
Solved! Go to Solution.
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 ) )
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 ) )
Thank you!