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

The Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more

Reply
heygowtam
Helper II
Helper II

Custom Column with multiple Conditions

How can write in DAX

IF [employment type] = "Full Time " && Start Date < [2022/07/01]  then it is "20"        ********(if employee started before july )*****
IF [employment type] = "Full Time " && Start Date > [2022/07/01] then it is (1.666 * Every MOnth)     **(If employee started after July)**
IF [employment type] = "Part Time " && Start Date < [2022/07/01] then it is  12,      ***(if employee started before july )**
IF [employment type] = "Part Time " && Start Date > [2022/07/01] then it is  (1 *  Every Month )    

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@heygowtam , Use Switch with True option in DAX , if power query use nested if then else

 

Switch(True(),

[employment type] = "Full Time " && [Start Date] < [2022/07/01] , "20" ,

[employment type] = "Full Time " && [Start Date] > [2022/07/01] , 1.66* Datediff([Start Date] , today(),month) ,

// Add others

)

 

Switch-Case statement of #PowerBI: https://www.youtube.com/watch?v=gelJWktlR80&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=56

 

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

1 REPLY 1
amitchandak
Super User
Super User

@heygowtam , Use Switch with True option in DAX , if power query use nested if then else

 

Switch(True(),

[employment type] = "Full Time " && [Start Date] < [2022/07/01] , "20" ,

[employment type] = "Full Time " && [Start Date] > [2022/07/01] , 1.66* Datediff([Start Date] , today(),month) ,

// Add others

)

 

Switch-Case statement of #PowerBI: https://www.youtube.com/watch?v=gelJWktlR80&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=56

 

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

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.