Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
force530
 
Posts: n/a
Default How do I create consecutive dates between a beginning and ending .

Upon entering a date range (weekly), i.e., 5-7-05 to 5-13-05 into a form, i
am trying to ref these dates and the dates in bewteen to reflect the date
only in another range of cells. The "EDATE" is ideal, but ref only the month
and not the day.

Using the date ranges above, I would like the function to be ...

7, 8, 9, 10, 11, 12, 13
  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

I am not sure I understand what you are trying to do but the DAY function
returns the day of the month as integer

=DAY(A1)

with May the 5th in A1 it will return 5 then you could just add 1, 2 etc for
the inbetween dates


Regards,

Peo Sjoblom

"force530" wrote:

Upon entering a date range (weekly), i.e., 5-7-05 to 5-13-05 into a form, i
am trying to ref these dates and the dates in bewteen to reflect the date
only in another range of cells. The "EDATE" is ideal, but ref only the month
and not the day.

Using the date ranges above, I would like the function to be ...

7, 8, 9, 10, 11, 12, 13

  #3   Report Post  
force530
 
Posts: n/a
Default

Sorry for the phrasing of the first question ... let me try and clear it up.

In A1 (beginning date) and then in A2 (ending date).

In b1 through b7 i want the dates of the week inserted using A1 and A2 as
references. I want this to be a auto entry upon dates being entered in A1 and
A2, not an autofill function where I would have to grab the crosshairs.

Beginning Date: 5-14-05 to: 5-20-05

Sat Sun Mon Tue Wed Thu Fri
14 20

How do I get Sun through Thu filled in?


"Peo Sjoblom" wrote:

I am not sure I understand what you are trying to do but the DAY function
returns the day of the month as integer

=DAY(A1)

with May the 5th in A1 it will return 5 then you could just add 1, 2 etc for
the inbetween dates


Regards,

Peo Sjoblom

"force530" wrote:

Upon entering a date range (weekly), i.e., 5-7-05 to 5-13-05 into a form, i
am trying to ref these dates and the dates in bewteen to reflect the date
only in another range of cells. The "EDATE" is ideal, but ref only the month
and not the day.

Using the date ranges above, I would like the function to be ...

7, 8, 9, 10, 11, 12, 13

  #4   Report Post  
Duke Carey
 
Posts: n/a
Default

in B1 type: =Day(A1)
in B2 type" =B1+1
copy B2 & paste into B3:B7


"force530" wrote:

Sorry for the phrasing of the first question ... let me try and clear it up.

In A1 (beginning date) and then in A2 (ending date).

In b1 through b7 i want the dates of the week inserted using A1 and A2 as
references. I want this to be a auto entry upon dates being entered in A1 and
A2, not an autofill function where I would have to grab the crosshairs.

Beginning Date: 5-14-05 to: 5-20-05

Sat Sun Mon Tue Wed Thu Fri
14 20

How do I get Sun through Thu filled in?


"Peo Sjoblom" wrote:

I am not sure I understand what you are trying to do but the DAY function
returns the day of the month as integer

=DAY(A1)

with May the 5th in A1 it will return 5 then you could just add 1, 2 etc for
the inbetween dates


Regards,

Peo Sjoblom

"force530" wrote:

Upon entering a date range (weekly), i.e., 5-7-05 to 5-13-05 into a form, i
am trying to ref these dates and the dates in bewteen to reflect the date
only in another range of cells. The "EDATE" is ideal, but ref only the month
and not the day.

Using the date ranges above, I would like the function to be ...

7, 8, 9, 10, 11, 12, 13

  #5   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

You can just add 1, in B1 put

=A1+1

in B2 use

=B1+1

and so on\\


Regards,

Peo Sjoblom

"force530" wrote:

Sorry for the phrasing of the first question ... let me try and clear it up.

In A1 (beginning date) and then in A2 (ending date).

In b1 through b7 i want the dates of the week inserted using A1 and A2 as
references. I want this to be a auto entry upon dates being entered in A1 and
A2, not an autofill function where I would have to grab the crosshairs.

Beginning Date: 5-14-05 to: 5-20-05

Sat Sun Mon Tue Wed Thu Fri
14 20

How do I get Sun through Thu filled in?


"Peo Sjoblom" wrote:

I am not sure I understand what you are trying to do but the DAY function
returns the day of the month as integer

=DAY(A1)

with May the 5th in A1 it will return 5 then you could just add 1, 2 etc for
the inbetween dates


Regards,

Peo Sjoblom

"force530" wrote:

Upon entering a date range (weekly), i.e., 5-7-05 to 5-13-05 into a form, i
am trying to ref these dates and the dates in bewteen to reflect the date
only in another range of cells. The "EDATE" is ideal, but ref only the month
and not the day.

Using the date ranges above, I would like the function to be ...

7, 8, 9, 10, 11, 12, 13



  #6   Report Post  
force530
 
Posts: n/a
Default

I have tried that .. but what happens when the last day of the month falls in
the middle of the week ... May 31 plus 1 is "32. 33, 34" etc,. I need a
formula that will recognize the calendar and make that adjustment. Thanks for
your help ...

"Peo Sjoblom" wrote:

You can just add 1, in B1 put

=A1+1

in B2 use

=B1+1

and so on\\


Regards,

Peo Sjoblom

"force530" wrote:

Sorry for the phrasing of the first question ... let me try and clear it up.

In A1 (beginning date) and then in A2 (ending date).

In b1 through b7 i want the dates of the week inserted using A1 and A2 as
references. I want this to be a auto entry upon dates being entered in A1 and
A2, not an autofill function where I would have to grab the crosshairs.

Beginning Date: 5-14-05 to: 5-20-05

Sat Sun Mon Tue Wed Thu Fri
14 20

How do I get Sun through Thu filled in?


"Peo Sjoblom" wrote:

I am not sure I understand what you are trying to do but the DAY function
returns the day of the month as integer

=DAY(A1)

with May the 5th in A1 it will return 5 then you could just add 1, 2 etc for
the inbetween dates


Regards,

Peo Sjoblom

"force530" wrote:

Upon entering a date range (weekly), i.e., 5-7-05 to 5-13-05 into a form, i
am trying to ref these dates and the dates in bewteen to reflect the date
only in another range of cells. The "EDATE" is ideal, but ref only the month
and not the day.

Using the date ranges above, I would like the function to be ...

7, 8, 9, 10, 11, 12, 13

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
How do I create a drop down cell with dates Jagz Excel Discussion (Misc queries) 3 April 24th 05 08:43 PM
How can I create a formula to locate data between two dates? A shink Excel Worksheet Functions 3 April 1st 05 02:11 AM
EXCEL, I want to create a series of calendars with dates marked f. ISO9000 Excel Discussion (Misc queries) 0 February 22nd 05 10:33 PM
Trying to create repeating dates and then sort column by date lizabright Excel Worksheet Functions 2 February 11th 05 12:33 AM
how to create dates before 1900 Pieter Excel Worksheet Functions 2 February 3rd 05 09:06 PM


All times are GMT +1. The time now is 03:00 PM.

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"