converting date to a monday date

U

uvknights

I need to take a date and convert it to a monday date.
I use the formula =today() in one cell (a1) and then in another cell(b1) I
need it to read the monday date ie: 3/3. so if today is 3/6/08 (in a1) the
it(b1) would read 3/3/08 .. when a1 is 3/11/08 then b1 would read 3/10/08
and so on. any help would be appreicated
 
S

Sandy Mann

=A1-WEEKDAY(A1,2)+1

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
M

Matthew Pfluger

One way:

Col A Col B
Date =Date-Weekday(Date)+2

The WEEKDAY function calculates the day of the week of a given date where 1
= Sunday (as I have it now).

First, subtract the day of the week from the original date. Then, since
Monday is the second day, just add two to that date (the previous Saturday)
to get the Monday date. Try it!

HTH,
Matthew Pfluger
 
R

Rick Rothstein \(MVP - VB\)

I believe this will do what you want...

=A1-WEEKDAY(A1)+2

Rick
 
U

uvknights

Awesome ! All three worked perfectly. I'm just a beginner and your help was
greatly appreciated!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top