On a related note, how could I get a cell to display next month's
name+year?
I tried =month(today())+1, which correctly gave me the month number, but
when I formatted the cell to 'mmmm yyyy' it came up with 'January 1900',
rather than 'March 2008' which I wanted.
The month number (plus one) is not a date, it is a small number, so
formatting it as a date won't work. Try this formula instead (and format the
cell as you have already shown)...
=DATE(YEAR(NOW()),MONTH(NOW())+1,1)
Rick