Forum Discussion
wherdzik
2 years agoHelper III
Count Distinct Dates Not working
I thought this would work but I am having a hard time to get the service days graph to work. Esentially I want to be able to count unique service days. It should be anywhere around 16 to 20 days as...
HotChilli
2 years agoCommunity Champion
What is the [Count Days] measure?
wherdzik
2 years agoHelper III
I tried Chat GPT and it doesnt like the syntax.
VAR temptable =
SUMMARIZE (
FILTER (
'SEP YTD',
'SEP YTD'[Service Date] >= FIRSTDATE('SEP YTD'[Service Date]) &&
'SEP YTD'[Service Date] <= LASTDATE('SEP YTD'[Service Date])
),
'SEP YTD'[Service Date]
)
RETURN
COUNTROWS ( temptable )