Given a week-day (1-7), how can I calculate what that week-day's last date was?
Example: Today is Wednesday, 2008/11/12, and I want to know what last Friday's date was.
|
Given a week-day (1-7), how can I calculate what that week-day's last date was? Example: Today is Wednesday, 2008/11/12, and I want to know what last Friday's date was. |
||||
|
|
|
If
This assumes that Friday is represented by day number 6 of the week (that is, 1 represents Sunday). Then subtract The above expression is slightly more complicated than it needs to be. If your day-of-week started at 0 for Sunday, it simplifies to:
or
|
|||||||
|
|
|
In general? See Calendrical Calculations. In this narrower case of within the previous week? Find the difference in days (Friday = 5, Wednesday = 3). Find differences in weeks (last week = -7 days). When you've found the offset in days+weeks, apply that offset to the calendar date. |
|||
|
|
|
Can't you just subtract x days? What language/library are you using? |
|||