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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
ClemFandango
Advocate II
Advocate II

Sum column based on if date is between two dates

Hi there,

 

I have the following tables, and i am trying to count the number of rows in 'Table 2' where 'Lost' = 1 and the data in 'Table 1' is the same month. I am trying to do this by adding a custom column to 'table 1' using DAX.

 

Table 1 - Example

ClemFandango_3-1707747652428.png

MMYYDD = end of month

 

Table 2 Example:-

ClemFandango_2-1707747573041.png

 

Example of data from Table 2

Expanded_DateLost
01/09/231
02/09/230
03/09/231
01/10/231
15/12/231

 

I am hoping to achieve the following in 'Table 1' by adding a calculated column called 'Lost':-

MMYYDDLost
30/09/232
31/10/231
30/11/230
31/12/231
31/01/240
29/02/240

 

Any ideas or help greatly appreciated!

 

CF

 

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@ClemFandango , a new column in dax in Table 1

 

countx(filter(Table2, eomonth(Table1[Date], 0)  = eomonth(Table2[date],0) && [Lost] =1), [Lost])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@ClemFandango , a new column in dax in Table 1

 

countx(filter(Table2, eomonth(Table1[Date], 0)  = eomonth(Table2[date],0) && [Lost] =1), [Lost])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak Thank you massivley! You are a genius!!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.