Forum Discussion

heygowtam's avatar
heygowtam
Helper II
3 years ago
Solved

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 Reply