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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
rogerdea
Helper IV
Helper IV

Measure for net gain/loss

Hello, i'm trying to calculate the net gain or loss using two different date columns.  One column is 'join date' and the other is called 'leave date'.  Join date always has a value and leave date might not if someone is still active.

 

I'm not sure how to do this in DAX as i need to COUNT distinct ID's, for both date columns and then calculate the difference between each yearly value:

net2.JPG

 

Any ideas?

thanks

 

 

1 ACCEPTED SOLUTION
harshnathani
Community Champion
Community Champion

Hi @rogerdea ,

 

You will need to unpivot the columns JoinDate and LeaveDate.

 

1.jpg

 

 

Click on Unpivot Columns

 

2.JPG

 

 

 

After unpivoting your table will look like below.

 

 

3.JPG

 

Create a Calculated Column

 

Year = YEAR('Table'[Date])
 
 
Create a Measure

 

Net Gain/Loss =

var _DistinctCount_Joining_by_year = CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER('Table','Table'[Join/Leave] = "JoinDate"))

var _DistinctCount_Leave_by_year = CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER('Table','Table'[Join/Leave] = "LeaveDate"))

RETURN

_DistinctCount_Joining_by_year -_DistinctCount_Leave_by_year

4.JPG

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

 

 

View solution in original post

2 REPLIES 2
harshnathani
Community Champion
Community Champion

Hi @rogerdea ,

 

You will need to unpivot the columns JoinDate and LeaveDate.

 

1.jpg

 

 

Click on Unpivot Columns

 

2.JPG

 

 

 

After unpivoting your table will look like below.

 

 

3.JPG

 

Create a Calculated Column

 

Year = YEAR('Table'[Date])
 
 
Create a Measure

 

Net Gain/Loss =

var _DistinctCount_Joining_by_year = CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER('Table','Table'[Join/Leave] = "JoinDate"))

var _DistinctCount_Leave_by_year = CALCULATE(DISTINCTCOUNT('Table'[ID]),FILTER('Table','Table'[Join/Leave] = "LeaveDate"))

RETURN

_DistinctCount_Joining_by_year -_DistinctCount_Leave_by_year

4.JPG

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

 

 

speedramps
Super User
Super User

Hi roger

 

Why does 1212, 2099 and 1313 rejoin in overlapping periods and how do you want these overlaps counted please?

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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.