Forum Discussion
cruzp
Helper V
3 years agoTable shows all rows when measure is added
Hi I want to create a new field that will show True if StartPrevious is Null/Empty. As seen in the picture below: 1 Opportunity have 1 project Expected output: I am using this DA...
pankaj_lp
Helper I
3 years agoit seems its because of the relationship between the tables,
Try using this anyway:
StartDateBool =
VAR OpportunityID = [Opportunity_BK]
VAR HasProject =
CALCULATE(
COUNTROWS(Table),
FILTER(
Table,
Table[Opportunity_BK] = OpportunityID &&
NOT(ISBLANK(Table[StartPrevious]))
)
)
RETURN
IF(HasProject > 0, "False", "True")