Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
tmumaw
Specialist II
Specialist II

Previous Year

This statement gives me current year, but I need previous year.  What do I need to change to get it.

Thanks

Date((monthname(Today())-1),'MMM YYYY')

1 Solution

Accepted Solutions
rajni_batra
Specialist
Specialist

Date((monthname(AddYears(Today(),-1))),'MMM YYYY') 

or

Date((monthname(AddMonths(Today(),-12))),'MMM YYYY') 

View solution in original post

3 Replies
rajni_batra
Specialist
Specialist

Date((monthname(AddYears(Today(),-1))),'MMM YYYY') 

or

Date((monthname(AddMonths(Today(),-12))),'MMM YYYY') 

israrkhan
Specialist II
Specialist II

Like below

=Year(Date)-1 OR

=Date(Year(Today())-1, 'YYYY')  OR


=Year(Date(Year(Today()))-1 )


tmumaw
Specialist II
Specialist II
Author

Thanks Rajni.....just what I needed.