This isn't quite as simple as it sounds, as it depends on what you mean by "month", but the best way to do it would be to multiply by 12 and divide by 365.25 (or 365.256363004 if you want to be particular, but I doubt it), then round to 0dp, so use
=ROUND(DAYS*12/365.25,0)
EDIT
this will...