Hi there!
The goal is to list the last 12 months.
I have this fields codes which are working fine within the current year:
Code:
.
.
.
{QUOTE “01- { ={MOD({Date \@ MM} +10;12)-2 }” \@ MMM/yyyy}
{QUOTE “01- { ={MOD({Date \@ MM} +10;12)-1 }” \@ MMM/yyyy}
{QUOTE “01- { ={MOD({Date \@ MM} +10;12) }” \@ MMM/yyyy}
{QUOTE “01- { ={MOD({Date \@ MM} +10;12)+1 }” \@ MMM/yyyy}
The problem is when the year changes, so when expected "Dec/2018" I got "01-0,0".
Ps.: My region date format "DD-MM-YYYY", list separator ";".
Any Ideas?
Thanks in advance.