Everett
Member since May 26, 2009
- Profile: /members/3482-everett.htm
- Comments: 2
Recent Blog Comments By Everett
-
Using CFLoop To Loop Over ColdFusion Dates
Posted on Jun 30, 2009 at 10:51 AM
This method also works well and is similar to your co-workers method. <pre> startDate = CreateDate(2000, 1, 1); endDate = CreateDate(2009, 10, 1); for (ii = startDate; DateCompare(ii, endDate) <= 0; ii = DateAdd('yyyy', 1, ii)) { WriteOutput( DateFormat(ii, "mmm d, yyyy") ); } </pre... read more »
-
POI Utility Now Supports Formulas And Cell Aliasing In Custom Tags
Posted on May 26, 2009 at 7:37 PM
@Erik, Just a note, if you upgrade to a newer version of POI then the ColdFusion Report Builder will not function correctly when exporting to Excel.... read more »