I want to use the result of the user input from the date range control. To filter my data, based on those dates (start and finish) I want to identify project name that are active between the date range selected by the user.
Here a example for my calculated field.
CASE
WHEN
(Start date <= FILTER_DATE_RANGE_START() and real_end_date >= FILTER_DATE_RANGE_START())
OR
(Start date <= FILTER_DATE_RANGE_END() and real_end_date >= FILTER_DATE_RANGE_END())
OR
(Start date >= FILTER_DATE_RANGE_START() and real_end_date <= FILTER_DATE_RANGE_END())
THEN “Actif”
ELSE “Inactif”
END