Need to output the next 12 months for reporting.
Simple CF loop stepping through the months.
<cfloop from="0" to="11" index="i" step="1">
<cfset displayMonth = dateAdd("m", 1 *
i, now())>
<cfoutput>#dateFormat(displayMonth,"mmmm
yyyy")#<br></cfoutput>
</cfloop>
+