Xpath within a year

0
Is it possible to use Xpath constraints to only display items that have a date within the next 12 months?  
asked
2 answers
0

Yes, check out the documentation here. You're looking for the token YearLength.

answered
0

You could use CurrentDateTime as a start date and EndDateVariable as a end date.

[Entity.DateVariable >= '[%CurrentDateTime%]' and Entity.DateVariable < EndDateVariable]

answered