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.
this is a screen shot from the table
as you can see there are values missing in the red area which if present will show a meaningful reason for the total at the bottom
I am thinking it has to do with the measure I am using which I have copied from excel and not sure if what changes to apply to make those missing values appear
Solved! Go to Solution.
@Anonymous , Please use a separate year or Date table and try like
Measure = CALCULATE(
[Net FCF - Unrisked],
FILTER(
ALLSELECTED(Year[Year]),
ISONORAFTER(Year[Year], MAX(Year[Year]), DESC)
))
@Anonymous , Please use a separate year or Date table and try like
Measure = CALCULATE(
[Net FCF - Unrisked],
FILTER(
ALLSELECTED(Year[Year]),
ISONORAFTER(Year[Year], MAX(Year[Year]), DESC)
))
yup that worked 🙂