The search function is down and I'd like to resolve this today.
If I have a date (today for example) and I want to show the date six days in the future; but, I want to omit Sunday as a day.
How would I do this? I've gotten this far:
<cfset FutureDate = #dateformat(Today(), 'mm/dd/yyyy')#+6>
<cfoutput>#FutureDate#</cfoutput>
The result of the above is 12/2/2004 and I need it to be 12/3/2004.
Thanks so much!!!
If I have a date (today for example) and I want to show the date six days in the future; but, I want to omit Sunday as a day.
How would I do this? I've gotten this far:
<cfset FutureDate = #dateformat(Today(), 'mm/dd/yyyy')#+6>
<cfoutput>#FutureDate#</cfoutput>
The result of the above is 12/2/2004 and I need it to be 12/3/2004.
Thanks so much!!!