Hello,
I am trying to create a report template that has a repeat table I want to pull from. In the repeat table, I only want to show items the are >= today()-5days. How do I write this in an if statement? So far I have tried:
${repeat_name}${if material_date >= today()-5}
And
${if material_date >= dateadd(now(), -5, 'days')}
Any advice would be greatly appreciated!