List of Dates- Assign Week Number??

M

Micquia

I have a list of random dates between 09/01/05 and 07/01/06. I would
like to assign a week number to each date. For example, I would like it
to be week 1 if the date is between the dates of 09/01/05 and 09/07/05.
Is there any simple way of going about this? I think I have done
something like this before but it has been a while.
 
J

JMB

If your dates are in column A, then maybe

=INT((A1-MIN(A:A))/7)+1

then copy down. Change A:A to restrict the range as needed. I assume 9/1/5
will be the smallest date value in the range. You could use DATE(2005, 9, 1)
instead of MIN.
 

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