Stephen W
Member since Feb 27, 2013
- Profile: /members/10699-stephen-w.htm
- Comments: 1
Recent Blog Comments By Stephen W
-
Ask Ben: Finding The Last Monday Of The Month In ColdFusion
Posted on Feb 27, 2013 at 8:37 AM
You can find the last day of any month with just 3 lines of CF code: <cfset Variables.monthEnd = DateFormat(DateAdd("m",1, Now()), "mm/d/yyyy")> <cfset Variables.monthEnd = ListSetAt(Variables.monthEnd,2,"1","/")> <cfset Variables.monthEnd = Da... read more »