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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

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
Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.