Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
KRK KRK is offline
external usenet poster
 
Posts: 91
Default help with dates please

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

  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 52
Default help with dates please

Format date as date - any standard at first - ok
Format date again but this time select custom and make it
dddd-dd-mm-yy
ok

--
Russell Dawson
Excel Student


"KRK" wrote:

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

.

  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 52
Default help with dates please

Error in last post

It should be

dddd-dd-mmm-yy
--
Russell Dawson
Excel Student


"KRK" wrote:

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

.

  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 52
Default help with dates please

No I was right first time - duuuhhh !
--
Russell Dawson
Excel Student


"Russell Dawson" wrote:

Format date as date - any standard at first - ok
Format date again but this time select custom and make it
dddd-dd-mm-yy
ok

--
Russell Dawson
Excel Student


"KRK" wrote:

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

.



  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 15,768
Default help with dates please

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")

--
Biff
Microsoft Excel MVP


"KRK" wrote in message
...
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



  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 52
Default help with dates please

It's my learning curve! And now, I've learnt something new!
I was under the impression that you had to format as date first - but no.

Thanks Don
--
Russell Dawson
Excel Student


"Don Guillett" wrote:

Is there a reason you can't just format a2

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"KRK" wrote in message
...
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


.

  #8   Report Post  
Posted to microsoft.public.excel.newusers
KRK KRK is offline
external usenet poster
 
Posts: 91
Default help with dates please - Thanks

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


"KRK" wrote in message
...
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


  #9   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 524
Default help with dates please

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")


--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com
Shikata ga nai...
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Linking computer dates (time) to spreadsheet dates that have formu bigisle Excel Worksheet Functions 3 January 3rd 10 08:05 PM
Stop dates from showing as numbers - when formated as dates JR Excel Discussion (Misc queries) 1 October 29th 08 04:38 PM
how do I sort a column of random dates into Consecutive dates Rob Gibson Excel Worksheet Functions 2 June 12th 07 05:10 AM
Calculating number of days between two dates that fall between two other dates [email protected] Excel Discussion (Misc queries) 5 October 26th 05 06:18 PM
Charting data against dates where dates are not at fixed intervals PK Charts and Charting in Excel 4 June 16th 05 05:08 AM


All times are GMT +1. The time now is 01:41 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"