Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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 )
Solved! Go to Solution.
@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
@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
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 50 | |
| 34 | |
| 33 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 60 | |
| 59 | |
| 39 | |
| 25 | |
| 24 |