Kal_Lam
September 12, 2019, 4:45pm
4
Hi @sigman , @hanadi ,
Seems like you wish to have a date constraints for collecting data for your survey. If this is the case, please see an example shared in the post discussed earlier:
Please be aware, the month-year appearance on a date question only affects how the date is displayed, it does not change the fact that a full date is still being stored. Specifically “2019-06” will get stored as 2019-06-01.
This is especially important if you then use these in any comparison calculation. For example, if you want to check if a date is between Dec 2018 (ie >= 2018-12-01) and January 2019, you’d actually probably want to check against February 2019 (ie < 2019-02-01), since Januar…