Hi,
I want to subtract 1 year from my current year.
This is how i am getting the year
Qyearfull = "20" + fdmContext["PERIODNAME"][4:]
I want to get previous year.
I thought i could convert Qyearfull into integer and subtract 1 from it.
This is how i tried int(Qyearfull) but getting error.
Any idea how can i convert string into integer.
Regards