Forum Discussion
AllanBerces
1 year agoPost Prodigy
Multiple IF Condition
Hi and good day to all, Can someone help me on my new calculated column. I have a table with column scope, % materials, Budgeted hrs, Treade and Hour Equevalent. Basically what i want to achieved is...
- 1 year ago
Hi AllanBerces - You can create the calculated column for "Hour Equivalent" in Power BI using DAX.
Hour Equivalent =IF(Heoutput[Trade] = "Scaff",Heoutput[Budgeted hrs],IF(Heoutput[% Materials] = BLANK() || Heoutput[% Materials] = "Blank",Heoutput[Budgeted hrs],Heoutput[% Materials] * Heoutput[Budgeted hrs]))Please check and i hope it works at your end.
rajendraongole1
1 year agoSuper User
Hi AllanBerces - You can create the calculated column for "Hour Equivalent" in Power BI using DAX.
Hour Equivalent =
IF(
Heoutput[Trade] = "Scaff",
Heoutput[Budgeted hrs],
IF(
Heoutput[% Materials] = BLANK() || Heoutput[% Materials] = "Blank",
Heoutput[Budgeted hrs],
Heoutput[% Materials] * Heoutput[Budgeted hrs]
)
)
Please check and i hope it works at your end.