Sort by week and year

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I am using below dates and convert them to
year and week using a formula that looks like this
=YEAR(A1)&"/"&WEEKNUM(A1)

5/7/2007 0:00 2007/19
1/9/2007 0:00 2007/2
5/15/2007 0:00 2007/20

The combined year and week is then base for a pivot tabel
where I sort the columns by the "Year/week".
The problem is that week 2 is sorted after week 19.

Is there some way to get the "year/week" to look like this
2007/02 when the week is 1-9?

The reason why I can not sort only by week is that I have dates
from different year. Sorting by week then mix up data from
year 2006 week 2 and year 2007 week 2.

Is there some smart person out there who can help me with
this problem:)?

Patric
 
Try this:

=YEAR(A1)&"/"&TEXT(WEEKNUM(A1),"00")

This will give you leading zeros if the week number is less than 10.

Hope this helps.

Pete
 

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

Similar Threads

Sort by Year and Week 1
Summing by weeks 10
Sorting a portion of a worksheet 1
match 3
Count working days by week 7
Please help me -urgent 1
Display "this week" column headers w/date & day of week? 9
WEEKNUM 3

Back
Top