Hello,
I need help
In date range field, I think that we are limited in the number of characters.
For example, if I put the following expression , it's ok :
now/y+1M/M+1d
but if I add parameters , I get an error:
now/y+1M/M/w+1d
or
now-1y/y+1M/M+1d
or other expression that exceed 11 characters
I really feel that the error is related to the number of characters, not a syntax error .
Is it possible to exceed this limit ?
I need to recover first Tuesday of every month:
1st Tuesday of the month from 8 PM to 7 AM 1st Wednesday .
Which forces me to accumulate many parameters
I need to
now/y+1M/M/w+1d+20h
to
now/y+1M/M/w+2d+7h
but it is refused .
or I can put
now/w-1w+2d-5h to now/w-1w+2d+7h => Syntax ok < 11 characters
now/w-3w+2d-5h to now/w-2w+2d+7h => Syntax ok < 11 characters
now/w-3w+2d-5h to now/w-3w+2d+7h => Syntax ok < 11 characters
...
now/w-9w+2d-5h to now/w-9w+2d+7h => Syntax ok < 11 characters
now/w-10w+2d-5h to now/w-10w+2d+7h => Syntax ko > 11 characters
Can you help me please ?
Thanks