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!View all the Fabric Data Days sessions on demand. View schedule
WorkingTime_Jan = Calculate ( Sum (LN[ArbeitszeitInH]))
There is a column in the table "LN" with dates. I want to summarize only the operations which had taken place in January 2018. The date format is dd.mm.yyyy
Is there a possiblity to use a wildcard or something like that?
Solved! Go to Solution.
@BachFel,
Create a measure using DAX below. If you don't get expected result, please share dummy data of your table.
WorkingTime_Jan = CALCULATE(SUM(LN[ArbeitszeitInH]),FILTER(LN,YEAR(LN[DateKey])=2018 && MONTH(LN[DateKey])=1))
Regards,
Lydia
@BachFel,
Create a measure using DAX below. If you don't get expected result, please share dummy data of your table.
WorkingTime_Jan = CALCULATE(SUM(LN[ArbeitszeitInH]),FILTER(LN,YEAR(LN[DateKey])=2018 && MONTH(LN[DateKey])=1))
Regards,
Lydia
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!