Forum Discussion
strangerMike
9 years agoHelper II
DAX Syntax
Hello, I am trying to create a New Column, but I get this error: A circular dependency was detected: View_EmailMetricsUnionNatural[CurNumBounces], View_EmailMetricsUnionNatural[CurEmailsSent...
MFelix
9 years agoSuper User
Hi strangerMike,
Try this change to your measure:
CurEmailsSent = IF(
Contains(View_EmailMetricsUnionNatural[Metric Name], "# emails sent"),
[Cur Mo Cur Yr],
0
)
Regards,
MFelix
Try this change to your measure:
CurEmailsSent = IF(
Contains(View_EmailMetricsUnionNatural[Metric Name], "# emails sent"),
[Cur Mo Cur Yr],
0
)
Regards,
MFelix
strangerMike
9 years agoHelper II
Also I tried your example for a new measure and i got this error:
Too few arguments were passed to the CONTAINS function. The minimum argument count for the function is 3.
Thanks