Unexpected Xpath result

1
I am trying to show all the dates of the coming month. I used this Xpath constraint: [Datum >= '[%BeginOfCurrentMonth%] + 1 * Monthlength'] [Datum <= '[%EndOfCurrentMonth%] + 1 * Monthlength'] But the results are the same as this month where I used this expression: [Datum >= '[%BeginOfCurrentMonth%] [Datum <= '[%EndOfCurrentMonth%] What am I doing wrong here?
asked
1 answers
1

Maybe Monthlength evaluates to 0 and the proper syntax is similar to the one as described in the first similar question:

'[%BeginOfCurrentMonth%] + 1 * [%MonthLength%]'

answered