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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
MahamoodBi
Frequent Visitor

How to filter Termination date(last date)

Hi Power bi experts,

I need to find out Termination date in below table,i have 3 records (i.e Action Type - D1, EE,ES this are employees last date )
i need these three data in the separate Termination Column, could you please suggest a calculated column and  also need to aplly filter Action Type {"D1", "EE","ES"}

MahamoodBi_0-1661442306229.png

my output will like

 

MahamoodBi_1-1661442358607.png

 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

@MahamoodBi 

Please try

Termination Date =
VAR CurrentDate = TableName[Action Date]
VAR TerminationDate =
    CALCULATE (
        MAX ( TableName[Action Date] ),
        ALLEXCEPT ( TableName, TableName[Emp.No] ),
        TableName[Action Type] IN { "D1", "EE", "ES" }
    )
RETURN
    IF ( CurrentDate = TerminationDate, TerminationDate )

View solution in original post

4 REPLIES 4
tamerj1
Super User
Super User

@MahamoodBi 

Please try

Termination Date =
VAR CurrentDate = TableName[Action Date]
VAR TerminationDate =
    CALCULATE (
        MAX ( TableName[Action Date] ),
        ALLEXCEPT ( TableName, TableName[Emp.No] ),
        TableName[Action Type] IN { "D1", "EE", "ES" }
    )
RETURN
    IF ( CurrentDate = TerminationDate, TerminationDate )

@tamerj1  i am getting error in below code

MahamoodBi_1-1661510613395.png

could you please suggest.

@MahamoodBi 
Seems you have two fact tables. Please provide details about yuor data model and relationships.

Thank you @tamerj1  ,now dax functions is working.

MahamoodBi_0-1661504618468.png

 

Helpful resources

Announcements
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.