Giving 'time' logic/relevance to questions in a form?

How can I make some questions to appear only on certain days/months of the year?

You can probably construct a suitable relevant expression using today() to get the current date, and format-date() to extract whatever component you wish to check: day, month, day-of-week, etc… eg

relevant: format-date(today(), '%a') = 'Mon'

1 Like