Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
I have a card which is producing a value based on the latest month in the data (currently September).
When the card is filtered using a slicer, it shows the latest month available for the filtered value, in this case August.
However, i would like the card to show zero to represent there is no value for the latest month available in the whole dataset
Solved! Go to Solution.
Try
Current_month =
IF (
MAX ( Outflow[Financial Month] )
= CALCULATE ( MAX ( Outflow[Financial Month] ), REMOVEFILTERS () ),
CALCULATE ( Measure[Total_FTE], LASTDATE ( Outflow[Financial Month] ) ),
0
)
Try
Current_month =
IF (
MAX ( Outflow[Financial Month] )
= CALCULATE ( MAX ( Outflow[Financial Month] ), REMOVEFILTERS () ),
CALCULATE ( Measure[Total_FTE], LASTDATE ( Outflow[Financial Month] ) ),
0
)
Seems to work great. Thank you
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.