Hi Rudo,
AddMonths(YOURDATE,-1) function will give you date with day count also but in your use case it shows that you don't want day count to be displayed.
To fix this, you need to use AddMonths function with proper date format as below:
FormatDateTime(AddMonths(YOURDATE,-1),"MMMM yyyy")
Hope it helps, Thanks :)