Is there anyway to add some simple logic to the recurring variables - I need to generate an invoice that specifies the previous month and year. For example if it’s 01/05/25 and I use -
||MONTH-1|| ||YEAR|| it will output April 2025 which is great but when it’s 01/01/25 I will get December 2026 which is incorrect.
Ideally I’d like to do something like -
IF ||MONTH|| = January THEN
||MONTH-1|| ||YEAR-1||
ELSE
||MONTH-1|| ||YEAR||