Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Display "this week" column headers w/date & day of week?

What I'm trying to create is a sort of calendar that has the 7 days of the
week as the column headers. I want the headers to display the day of the week
and the date depending on what week it is. So if it's the week of September
9th, I want A1 to show 9/9/2007 - Sunday, A2 would be 9/10/2007 - Monday,
etc. Then, the following week I want the headers to change so that A1 is now
9/16/2007 - Sunday.

Of course, this is simple to do manually but I don't want to have to change
the headers every Sunday... is this even possible?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,510
Default Display "this week" column headers w/date & day of week?

Hi Ivan,

If you enter the date in A1 and then in B1 you enter the formula = A1+1 and
drag that formula across to the end of the week then you only have to change
the date in cell A1 each week.

Regards,

OssieMac

"Ivan Wiegand" wrote:

What I'm trying to create is a sort of calendar that has the 7 days of the
week as the column headers. I want the headers to display the day of the week
and the date depending on what week it is. So if it's the week of September
9th, I want A1 to show 9/9/2007 - Sunday, A2 would be 9/10/2007 - Monday,
etc. Then, the following week I want the headers to change so that A1 is now
9/16/2007 - Sunday.

Of course, this is simple to do manually but I don't want to have to change
the headers every Sunday... is this even possible?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Display "this week" column headers w/date & day of week?

Try this:

In A1: =TODAY()-MOD(TODAY()-1,7)
In A2: =A1+1
copy down to A7


"Ivan Wiegand" wrote:

What I'm trying to create is a sort of calendar that has the 7 days of the
week as the column headers. I want the headers to display the day of the week
and the date depending on what week it is. So if it's the week of September
9th, I want A1 to show 9/9/2007 - Sunday, A2 would be 9/10/2007 - Monday,
etc. Then, the following week I want the headers to change so that A1 is now
9/16/2007 - Sunday.

Of course, this is simple to do manually but I don't want to have to change
the headers every Sunday... is this even possible?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Display "this week" column headers w/date & day of week?

Put this formula in A1:

=TODAY()-WEEKDAY(TODAY())+1

and apply a custom format to the cell of "mm/dd/yyy - dddd" (without
the quotes). Then in B1 enter the formula:

=A1+1

The format should change to be the same as A1, but if it doesn't then
use the Format Painter to copy the format from A1 to B1. Then just
copy B1 into C1:G1, and then you have your headings, which will change
every Sunday.

I was a bit confused when you said A2 for Monday, but I think this is
what you want.

Hope this helps.

Pete


On Sep 11, 11:40 pm, Ivan Wiegand <Ivan
wrote:
What I'm trying to create is a sort of calendar that has the 7 days of the
week as the column headers. I want the headers to display the day of the week
and the date depending on what week it is. So if it's the week of September
9th, I want A1 to show 9/9/2007 - Sunday, A2 would be 9/10/2007 - Monday,
etc. Then, the following week I want the headers to change so that A1 is now
9/16/2007 - Sunday.

Of course, this is simple to do manually but I don't want to have to change
the headers every Sunday... is this even possible?



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Display "this week" column headers w/date & day of week?

Put this formula in A1:

=TODAY()-WEEKDAY(TODAY())+1

and apply a custom format to the cell of "mm/dd/yyy - dddd" (without
the quotes). Then in B1 enter the formula:

=A1+1


Or, put this formula...

=TODAY()-WEEKDAY(TODAY())+ROWS($1:1)

in A1 and just copy it down.

Rick


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Display "this week" column headers w/date & day of week?

The OP said he wanted the dates as column headers (twice), and then
referred to A1 and A2 as examples - I presume he wants them to go
across rather than down.

Although there are advantages to having just one formula, I think
having =A1+1 six times is easier.

Pete

On Sep 12, 9:10 am, "Rick Rothstein \(MVP - VB\)"
wrote:
Put this formula in A1:


=TODAY()-WEEKDAY(TODAY())+1


and apply a custom format to the cell of "mm/dd/yyy - dddd" (without
the quotes). Then in B1 enter the formula:


=A1+1


Or, put this formula...

=TODAY()-WEEKDAY(TODAY())+ROWS($1:1)

in A1 and just copy it down.

Rick



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Display "this week" column headers w/date & day of week?

The OP said he wanted the dates as column headers (twice),
and then referred to A1 and A2 as examples - I presume he
wants them to go across rather than down.


For the record, the single formula for column headers would be....

=TODAY()-WEEKDAY(TODAY())+COLUMNS($A:A)

copied across.

Rick


"Pete_UK" wrote in message
ps.com...
The OP said he wanted the dates as column headers (twice), and then
referred to A1 and A2 as examples - I presume he wants them to go
across rather than down.

Although there are advantages to having just one formula, I think
having =A1+1 six times is easier.

Pete

On Sep 12, 9:10 am, "Rick Rothstein \(MVP - VB\)"
wrote:
Put this formula in A1:


=TODAY()-WEEKDAY(TODAY())+1


and apply a custom format to the cell of "mm/dd/yyy - dddd" (without
the quotes). Then in B1 enter the formula:


=A1+1


Or, put this formula...

=TODAY()-WEEKDAY(TODAY())+ROWS($1:1)

in A1 and just copy it down.

Rick




  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 709
Default Display "this week" column headers w/date & day of week?

You could also enter the suggested formula on 2 rows and format each how you
want to see it ie once as dd/mmm/yy and once as dddd, so that you get the
date in one cell and the day in another

"Ivan Wiegand" wrote:

What I'm trying to create is a sort of calendar that has the 7 days of the
week as the column headers. I want the headers to display the day of the week
and the date depending on what week it is. So if it's the week of September
9th, I want A1 to show 9/9/2007 - Sunday, A2 would be 9/10/2007 - Monday,
etc. Then, the following week I want the headers to change so that A1 is now
9/16/2007 - Sunday.

Of course, this is simple to do manually but I don't want to have to change
the headers every Sunday... is this even possible?

  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Display "this week" column headers w/date & day of week?

Or you could just put the words "Sunday", "Monday", etc in the second
row - they are not going to change.

Pete

On Sep 12, 3:24 pm, Richard wrote:
You could also enter the suggested formula on 2 rows and format each how you
want to see it ie once as dd/mmm/yy and once as dddd, so that you get the
date in one cell and the day in another



"Ivan Wiegand" wrote:
What I'm trying to create is a sort of calendar that has the 7 days of the
week as the column headers. I want the headers to display the day of the week
and the date depending on what week it is. So if it's the week of September
9th, I want A1 to show 9/9/2007 - Sunday, A2 would be 9/10/2007 - Monday,
etc. Then, the following week I want the headers to change so that A1 is now
9/16/2007 - Sunday.


Of course, this is simple to do manually but I don't want to have to change
the headers every Sunday... is this even possible?- Hide quoted text -


- Show quoted text -



  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Display "this week" column headers w/date & day of week?

LOL

I'm not laughing at Richard; but, rather, how easy it is to overlook the
obvious... I think we have all been guilty of that at one time or another.

For the OP... rather than typing in each day name individually, just put the
word Sunday in your first column's first cell and drag it across to place
the other day names into the adjacent cells.

Rick


"Pete_UK" wrote in message
oups.com...
Or you could just put the words "Sunday", "Monday", etc in the second
row - they are not going to change.

Pete

On Sep 12, 3:24 pm, Richard wrote:
You could also enter the suggested formula on 2 rows and format each how
you
want to see it ie once as dd/mmm/yy and once as dddd, so that you get the
date in one cell and the day in another



"Ivan Wiegand" wrote:
What I'm trying to create is a sort of calendar that has the 7 days of
the
week as the column headers. I want the headers to display the day of
the week
and the date depending on what week it is. So if it's the week of
September
9th, I want A1 to show 9/9/2007 - Sunday, A2 would be 9/10/2007 -
Monday,
etc. Then, the following week I want the headers to change so that A1
is now
9/16/2007 - Sunday.


Of course, this is simple to do manually but I don't want to have to
change
the headers every Sunday... is this even possible?- Hide quoted text -


- Show quoted text -




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 can I chart "by week" k. moran Charts and Charting in Excel 7 August 4th 06 10:43 PM
Need to convert date to "day of the week only" [email protected] Excel Worksheet Functions 2 April 26th 06 03:10 PM
How do I "Sum sales figure for a finacial month to currenct week"? [email protected] Excel Worksheet Functions 1 April 1st 06 11:45 AM
Simple? Formula for "for the week starting Monday May Xxth" nmorse Excel Worksheet Functions 2 March 27th 06 05:52 PM
How do I set up a sheet with date headers one week apart. mossbury New Users to Excel 10 January 20th 06 03:26 PM


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

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

About Us

"It's about Microsoft Excel"