Forum Discussion
NiugeS
Helper V
6 years agoIf Filtered Date is Smaller then blank
Hi all, Apologies if this is simple but i'm still learning. I have a table that contains issues (support tickets). Sometimes these are resolved after the report period and I am trying to f...
NiugeS
Helper V
6 years agoaz38 Apologies if I copied the wrong file link. I've updated the original message.
az38
Community Champion
6 years agomuch better
1 set Active "Show tems with no data" for [Key] field in Visualizations pane
2 re-write your measure
Measure 2 =
var _Created = MIN('Issues'[Created])
RETURN
If(_Created > CALCULATE(MIN('Created Date'[Date])), BLANK(), SELECTEDVALUE('Issues'[Created]) )
but Im not sure I understand your condition logic correct