My dataset is basically a time-series with IDs.
When I use distinctCount(ID) and create a table or graph, QuickSight seems to count distinct appearances of ID per time unit selected, not for the full population.
E.g. when an ID has one occurence in May and one in June, it should count it once in May, but not in June - however, as the sum of distinctcounts per months is bigger than the “total” distinctcounts, it seems to doublecount those.
I tired with distinctCountOver({ID},[{created_at}],PRE_FILTER) but this gives me the total number of occurences in each month.
Can you help?