Forum Discussion
ssvr
7 years agoHelper III
Need Help on DAX
Hi All, I want to migrate a project from Excel - Power BI. I need to write a DAX based on Excel formul. Please help me out Formula is in A9 Cell =IF([@[Case No]]=A10,"",+IF(OR([@Statu...
- 7 years ago
Hi ssvr,
I made an sample for your reference. Here I created a calculated column using the formula.
Column = IF ( [Case No] = "A10", "", IF ( [Status] = "Board Review" || [Status] = "Approved" || [Status] = "Rejected" || [Status] = "In Pilot", "" & Table1[Received Date], "" ) )For more details, please check the pbix as attached.
https://www.dropbox.com/s/5bpc08p47rswabx/Need%20Help%20on%20DAX.pbix?dl=0
Regards,
Frank
- 7 years ago
Hi ssvr,
I create two measures as below.
Count of project = COUNT(Table1[ProjectNumber])
Measure 2 = SUMX(ALLEXCEPT(Table1,Table1[Resouceinitials]),[Count of project])
For more details, please check the pbix as attached.
https://www.dropbox.com/s/4t5pkbq5cgfdici/DAX.pbix?dl=0
Regards,
Frank
- 7 years ago
Hi ssvr,
Try to update the formula to this one.
Count of project = COUNTA(Table1[ProjectNumber])
Regards,
Frank
v-frfei-msft
7 years agoCommunity Support
Hi ssvr,
Try to update the formula to this one.
Count of project = COUNTA(Table1[ProjectNumber])
Regards,
Frank
v-frfei-msft
7 years agoCommunity Support
Hi ssvr,
Does that make sense? If so, kindly mark my answer as a solution to close the case.
Regards,
Frank