XPath using a specific date

0
Hi I can get this Xpath to work  [CaseDate >= '[%BeginOfCurrentMonth%]'] But i want to show all cases > 1/12/17  How would i write this?
asked
2 answers
2

Hi Dan,

You can use variables in XPath. If you have the date in a variable e.g. "BeginOfDecemeber" you could write

[CaseDate >= $BeginOfDecember]

-Andrej

answered
0

You can use the answer just like Andrej said. And you can create that variable through "addDays([%BeginOfCurrentMonth%], 1)". This way you get 2/12/2017 as a date.

answered