Forum Discussion
kristty1805
5 years agoFrequent Visitor
Conditional in measure but for blanks
Hello,
I have this formula but as you see there are so many blanks. I want to get rid of them. I don't want to filter but I want to include a conditional in my formula. for example. If ActualCompltDate is Blank, then take the column PlannedUTComplDate and if planned ut complDate is blank, then take the column ModifyDate
2 Replies
- arvindsingh802
Community Champion
Use = COALESCE(ActualCompltDate, PlannedUTComplDate,ModifyDate)
COALESCE function (DAX) - DAX | Microsoft Docs
If this post helps, then please consider Accept it as the solution and give it a thumbs up
- kristty1805Frequent Visitor
But how should I combine with the other formula?
CD_closed = CALCULATE(COUNTROWS(CD), USERELATIONSHIP(CD[ActualUTCmplDate],'Calendar'[Date]), OR (CD[Statusforreporting]="4. Build & Unit Test Completed", CD[Statusforreporting]="5. Functional Sign-Off Completed"))