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.
Struggling to understand why the below doesn't work? It gives me the sum of all carts instead of only the current month. Is there an explanation for this?
MTD Carts = CALCULATE(SUM(table_name[Carts]),FILTER(table_name,MONTH(table_name[date].[MonthNo]=MONTH(TODAY()))))
Thanks in advance.
Solved! Go to Solution.
Hi @KevinCP,
If I understand you correctly, the formula below should work in your scenario.
MTDCarts = CALCULATE ( SUM ( table_name[Carts] ), FILTER ( table_name, YEAR ( table_name[date] ) = YEAR ( TODAY () ) && MONTH ( table_name[date] ) = MONTH ( TODAY () ) ) )
Regards
Hi,
Here's my suggestion:
=SUM(table_name[Carts])
hope this helps.
Hi @KevinCP,
If I understand you correctly, the formula below should work in your scenario.
MTDCarts = CALCULATE ( SUM ( table_name[Carts] ), FILTER ( table_name, YEAR ( table_name[date] ) = YEAR ( TODAY () ) && MONTH ( table_name[date] ) = MONTH ( TODAY () ) ) )
Regards
This worked. Thanks!