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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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