help with dates please

K

KRK

hello

I have a date in A1 which is a 'start date', 01/02/10

In A2 I have the same date formatted as Mon 01/02/10 using Text(A1,"ddd
dd/mm/yy") . no problem

In A3, A4 etc I need Tue 02/02/10, Wed 03/02/10 etc etc etc. ie the dates
are incrementing by 1 day in each row.

Normally I would just add 1 to the date above, but the text formula makes
this impossible.

help & advice please ??

Thanks as always

KK
 
T

T. Valko

Try it like this...

A1 = some date

Entered in A2 and copied down as needed:

=TEXT(A$1+ROWS(A$2:A2)-1,"ddd dd/mm/yy")
 
K

KRK

Hello & thanks, I've got it now.

My understanding of cell formats is very poor and I'd been using the text()
function as an alternative, tho I see it actually does the same thing..

Thanks again

KK
 
S

Stan Brown

Sat, 13 Feb 2010 12:27:54 -0000 from KRK
hello

I have a date in A1 which is a 'start date', 01/02/10

In A2 I have the same date formatted as Mon 01/02/10 using Text(A1,"ddd
dd/mm/yy") . no problem

In A3, A4 etc I need Tue 02/02/10, Wed 03/02/10 etc etc etc. ie the dates
are incrementing by 1 day in each row.

Normally I would just add 1 to the date above, but the text formula makes
this impossible.

How so?

=Text(1+A1,"ddd dd/mm/yy")
=Text(2+A1,"ddd dd/mm/yy")

and so forth.

Or, if you want something you can click and drag,

=Text(row()-1+A1,"ddd dd/mm/yy")
 

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