Ask Ben: Getting The Start And End Dates Of The Previous Week In ColdFusion

Posted November 3, 2008 at 9:06 AM by Ben Nadel

Tags: ColdFusion, Ask Ben

Hi Ben, Please how do I get beginning of previous week to the end of previous week. I'm working on something that needs last week's date to run today. Thank you.

I do now and will always love working with dates in ColdFusion. The fact that you can seamlessly switch from standard dates to numeric dates and do all kind of fast math on them makes them just a pleasure to work with. Not to mention the fact that date math is generally faster that using methods like DateDiff() and DateAdd(). Anyway, getting to the question above, let's not get distracted by the fact that we are dealing with the "previous" week. What we need to think of is the simple fact that we need to get the start and end dates of week given a date within it. Once we see that, then, as I have demonstrated before, this is simply a matter of a little math:

  • <!---
  • Get today's date; but then subtract 7 days from it so that
  • we have "this" day of last week. The Fix() method simply
  • removes the time stamp (and converts date to numeric date).
  • --->
  • <cfset dtLastWeek = (Fix( Now() ) - 7) />
  •  
  • <!---
  • Now that we have a day in last week, we can easily grab the
  • start and end of the week.
  • --->
  • <cfset objLastWeek = StructNew() />
  •  
  • <!--- Get start of week. --->
  • <cfset objLastWeek.Start = DateFormat(
  • dtLastWeek - DayOfWeek( dtLastWeek ) + 1
  • ) />
  •  
  • <!--- Get end of week by adding to start date. --->
  • <cfset objLastWeek.End = DateFormat( objLastWeek.Start + 6 ) />
  •  
  •  
  • <!--- Output the week delimiters. --->
  • <cfoutput>
  • <p>
  • Start: #objLastWeek.Start#<br />
  • End: #objLastWeek.End#
  • </p>
  • </cfoutput>

The reason that we have to use DateFormat() for the dates when calculating them is that a byproduct of date math is the fact that it turns standard dates into numeric dates; these are date/time stamps represented as floating point values where the integer is the day and the fraction is the time. You can certainly leave the dates in numeric format, but I find that this can confuse people (and will fail calls to IsDate()). By passing the values through the DateFormat() as an intermediary handler, it converts the numeric dates back into standard dates.

Running the above code, we get:

Start: 26-Oct-08
End: 01-Nov-08

I hope that helps.




Reader Comments

May 20, 2009 at 10:12 AM // reply »
2 Comments

Is it possible to display all the days in the current week beginning on a Monday. For example:

Monday 5/18/2009
Tuesday 5/19/2009
Wednesday 5/20/2009
Thursday 5/21/2009
Friday 5/22/2009
Saturday 5/23/2009
Sunday 5/24/2009


May 20, 2009 at 1:01 PM // reply »
11,243 Comments

@Jay,

No problem - all you would have to do is get the Monday of the given week, then use a CFLoop to for 7 days.

For more information check out these links:

http://www.bennadel.com/blog/136-Using-CFLoop-To-Loop-Over-ColdFusion-Dates.htm

http://www.bennadel.com/blog/893-Date-Looping-Using-ColdFusion-Custom-DateLoop-Tag.htm


Mar 9, 2010 at 3:36 PM // reply »
1 Comments

Is this example providing the previous week or is it providing a span of 7 days which may include last week?


Mar 19, 2010 at 9:15 AM // reply »
11,243 Comments

@David,

It gets the last week. I goes back 7 days, and then finds the start / end of that week.


May 17, 2012 at 1:36 PM // reply »
8 Comments

Ben

This was exactly what I was looking for, but didn't know exactly how to approach it. You've saved me a bunch of time! Cheers


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 23, 2013 at 5:19 AM
Ask Ben: Print Part Of A Web Page With jQuery
How to print also the background color of table cells and table lines ... read »
May 23, 2013 at 3:55 AM
Javascript Array Methods: Unshift(), Shift(), Push(), And Pop()
very interesting and helpful too. ... read »
May 22, 2013 at 5:35 PM
Script Tags, jQuery, And Html(), Text() And Contents()
This is still an issue 2 years later. jQuery is supposed to remediate these cross browser issues, no? I have been unable to find any statement from the jQuery team calling this behavior "by de ... read »
May 22, 2013 at 12:44 PM
Ask Ben: Query Loop Inside CFScript Tags
In cf10, if you call a function that has: local.result = {}; local.result.msg = ""; local.svc = new query(); local.svc.setSQL("SELECT * FROM..."); local.obj = local.svc.exe ... read »
May 22, 2013 at 12:29 PM
Strange Interaction Between DeserializeJson(), ArrayContains(), And Database Values In ColdFusion
@Ben: What version of Java are you using? Also, did you test users.id to see what Java reports as the data type? I wonder if it's not a Java primitive data type, but getting returned as something ... read »
May 22, 2013 at 11:47 AM
Strange Interaction Between DeserializeJson(), ArrayContains(), And Database Values In ColdFusion
@Dana, Awesome - so it looks like this bug was fixed in ColdFusion 10. Thanks so much for double-checking that. ... read »
May 22, 2013 at 11:37 AM
Strange Interaction Between DeserializeJson(), ArrayContains(), And Database Values In ColdFusion
When I c&p and run on cf10, I get: Selected User IDs: 1,4 User 1 selected: YES - YES User 2 selected: NO - NO User 3 selected: NO - NO User 4 selected: YES - YES User 5 selected: NO - ... read »
May 22, 2013 at 11:27 AM
Strange Interaction Between DeserializeJson(), ArrayContains(), And Database Values In ColdFusion
@Tom, Good thought, but no dice. Both of these still exhibit the same behavior: users.id[ users.currentRow ] users[ "id" ][ users.currentRow ] It's just something whacky happening with ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools