Forum Discussion
Sime
Helper I
5 years agoCustom Column with DAX IF Statement
Hi All, I'm attempting to create a custom column using an IF Statement and by Dividing 2 already existing columns. I have tried the following: IF([JTD Earned Value] = 0, "1", [JTD Earned ...
- 5 years ago
Hi Sime ,
In Power Query, add a custom column and write this code..
if [JTD Earned Value] = 0 then "1" else [JTD Earned Value] / [JTD Labour Amount @ Cost]
Angith_Nair
Continued Contributor
5 years agoHi Sime ,
In Power Query, add a custom column and write this code..
if [JTD Earned Value] = 0 then "1" else [JTD Earned Value] / [JTD Labour Amount @ Cost]