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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
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!