Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
BachFel
Helper II
Helper II

Calculate Sum Month Year

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?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

@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

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors