Hello,
I want to compare the number of flights between two months in my dataset.
I have this calculated field:
distinct_count(
ifelse(
extract("YYYY", when) = extract("YYYY", truncDate("MM", addDateTime(${SelectedMonthOffset}, 'MM', now()))) AND
extract("MM", when) = extract("MM", addDateTime(${SelectedMonthOffset}, 'MM', now())) AND
extract("DD", when) >= 1 AND
extract("DD", when) <= 31 AND
duration > 0,
{mission_id},
NULL
)
)
Which works great. When I set the parameter to -1 or -2, it shows me the corresponding flights in those months.
Now, I want the same calculated field for the month before the one I set in the parameter.
I tried this:
distinct_count(
ifelse(
extract("YYYY", when) = extract("YYYY", truncDate("MM", addDateTime(${SelectedMonthOffset} - 1, 'MM', now()))) AND
extract("MM", when) = extract("MM", addDateTime(${SelectedMonthOffset} - 1, 'MM', now())) AND
extract("DD", when) >= 1 AND
extract("DD", when) <= 31 AND
duration > 0,
{mission_id},
NULL
)
)
But it’s not working. (When I set the parameter to -2, it works in the first calculation; that’s not the problem. The second one is not working for any number, including 0.)
It lets me save the calculated field, but it doesn’t show it on the graph.
Any idea what is the problem?
Thanks,
Maya