week numbers

D

dympna

Hi could any one assist me, I have created an excel sheet as a tracker
to highlight tasks that need to be completed before the start date of
a project.
I have input the week number manuall and it is not based on a date or
anything like that.
I am finding that at the end of this year for week 52 it is continuing
to roll onto week 53 and does not recognise that my max for the week
number or for this figure is 52 and then I want it to start at 1 again
for the next year.

Can you advise if I have to insert the correct monday date of that
week so that excel can to a proper count.

I would appreciate any help you can give me.
 
S

Sandy Mann

I have input the week number manuall and it is not based on a date or
anything like that.
I am finding that at the end of this year for week 52 it is continuing
to roll onto week 53 and does not recognise that my max for the week
number or for this figure is 52 and then I want it to start at 1 again
for the next year.

Assuming that you are entering the first week number manually and you are
using the formula =A1+1 to index the week number change your formula to:

=IF(A1+1=53,1,A1+1)

which will reset the count back to 1.

--
HTH

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

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 
G

Guest

You can use the MOD function
=MOD(A1,52)

Sandy Mann said:
Assuming that you are entering the first week number manually and you are
using the formula =A1+1 to index the week number change your formula to:

=IF(A1+1=53,1,A1+1)

which will reset the count back to 1.

--
HTH

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

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 
S

Sandy Mann

Not quite you end up with a zero at after 51. Slight modification:

=MOD(A1,52)+1

--
Regards,

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

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 

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

Week Number Format 4
Current year and current week number 9
week numbers 3
Converting date to week number over several years 3
week No to date 2
Excel Limit to Named Ranges 1
Is 4th January 2010 = Week 2?? 5
week entry 1

Top