Why is my time intelligence measure not returning any results?
This measure returns results:
Activity =
COUNTROWS(FILTER( Inspection Data , [Inspection Type] = "Safety Activities"))
However, this one returns a blank:
Activity YTD =
CALCULATE(
COUNTROWS( Inspection Data ),
DATESYTD( Inspection Data [End Date]),
Inspection Data [Inspection Type] = "Safety Activities"
)
I am not getting error messages.