Calculate the date 6 months old from today, please advise with recipes
Discussion posts and replies are publicly visible
todate(concat(month(ri!date1)-6,"/",day(ri!date1),"/",year(ri!date1)))
edate(today(), -6)
how to get past 3 year from now?
Hi pd5143, Kindly try this solutiona!localVariables( local!a:year(today()), local!b, a!flatten( a!forEach( items: enumerate(3), expression: append(local!b,local!a-(fv!index-1)) )),)
Try this
year(today()) - enumerate(3)