Try this:
iif(Month(date()) < 10, 0 & Month(date()), Month(date())
That is an immediate if statement, and it is checking to see if the month function returns a number less than 10. If it does, it prepends a zero (0) to the month, if not it simply returns the month value. HTH!