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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Calculate 12 Month Wages for Terminated and Current Employees

Hi everyone,

I have a data model where I Have an Employee table that has every employee in it.  That table has employee name, hire date, terminated date and a iscurrent field telling if they are currently employed now or not.  Term date is null if they are still employed.

 

I then have that table linked to a wages file by employee ID that contains their historical earnings.  

 

I have the following DAX Code that allows me to calculate the last 12 months of pay for current employees.  However, it doesn't work for people that left in the past since this goes from today until 12 months ago.  Is there a way I can modify this DAX to use the terminated date field in the employee table to get the last 12 months of pay from the day they left?

 

var varToday =  Today()
var varYearAgo = varToday - 365
RETURN


CALCULATE(
    SUM(Earnings[EarningsAmount]),
    FILTER('Earnings',
 'Earnings'[Date] <= varToday
 && 'Earnings'[Date]>= varYearAgo
))
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

Can you build the filter on the Terminate date and if it is blank then use Today as the date

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

Share some data and show thr expected result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
amitchandak
Super User
Super User

Can you build the filter on the Terminate date and if it is blank then use Today as the date

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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