I face the problem where I created measure which has formula like below:
# Mixing Class =
VAR Temp =
SUMMARIZE (
'Mixing Class',
'Mixing Class'[ClassKey],
"NumClassTCMixing", DISTINCTCOUNTNOBLANK ( 'Mixing Class'[TC_TeacherCode] )
)
RETURN
COUNTX ( FILTER ( Temp, [NumClassTCMixing] >= 4 ), 'Mixing Class'[ClassKey] )
After this I drag this measure to Line Chart which show the total number of Classes through time. But the Chart show nothing (No error, No data). What is the problem here? Does my DAX code has errors? Please help me because I spend all day to fix this but nothing changes :(
This is the sample of columns in my measure:

