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.
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!