Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 318
Default Monthly dates on Reports

Hello I have a monthly report with worksheets for each working day of the
month, Monday thru Friday. I use the same report every month I just change
the month. the report tilte is the name as the day of the month e.g.
September 4 2007 the next sheet is September5 2007 etc.(I'm always one day
behind, on Sep 5 I will be doing report for Sep 4 ) On the first worksheet
of the month I type in the date. the second sheet of the month I entered the
formula =Sep407!J1+1 . The problem is that every monday I have to adjust the
formula, to compensate for Sat and Sun. Is there a formulat that if I enter
the date on the first worksheet it will automatically update the entire
workbook correctly. thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,081
Default Monthly dates on Reports

If you make sure to have a list of holiday dates in the workbook, you can use

=workday("8/31/2007",1,range with holiday dates) to get the first working
day of each month (adjusting the date in quotes as appropriate)

Once you get the monthly starting date, each subsequent sheet can use this
same formula, but referencing the date on the earlier sheet.

"Wanna Learn" wrote:

Hello I have a monthly report with worksheets for each working day of the
month, Monday thru Friday. I use the same report every month I just change
the month. the report tilte is the name as the day of the month e.g.
September 4 2007 the next sheet is September5 2007 etc.(I'm always one day
behind, on Sep 5 I will be doing report for Sep 4 ) On the first worksheet
of the month I type in the date. the second sheet of the month I entered the
formula =Sep407!J1+1 . The problem is that every monday I have to adjust the
formula, to compensate for Sat and Sun. Is there a formulat that if I enter
the date on the first worksheet it will automatically update the entire
workbook correctly. thanks

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 318
Default Monthly dates on Reports

Thanks Duke Carey
This works, but for my clarification, I still have to go in and adjust the
date in quotes in each worksheet. that is
=WORKDAY( "9/5/07",1)
=WORKDAY( "9/6/07",1)
=WORKDAY( "9/7/07",1)
thanks again



"Duke Carey" wrote:

If you make sure to have a list of holiday dates in the workbook, you can use

=workday("8/31/2007",1,range with holiday dates) to get the first working
day of each month (adjusting the date in quotes as appropriate)

Once you get the monthly starting date, each subsequent sheet can use this
same formula, but referencing the date on the earlier sheet.

"Wanna Learn" wrote:

Hello I have a monthly report with worksheets for each working day of the
month, Monday thru Friday. I use the same report every month I just change
the month. the report tilte is the name as the day of the month e.g.
September 4 2007 the next sheet is September5 2007 etc.(I'm always one day
behind, on Sep 5 I will be doing report for Sep 4 ) On the first worksheet
of the month I type in the date. the second sheet of the month I entered the
formula =Sep407!J1+1 . The problem is that every monday I have to adjust the
formula, to compensate for Sat and Sun. Is there a formulat that if I enter
the date on the first worksheet it will automatically update the entire
workbook correctly. thanks

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,081
Default Monthly dates on Reports

No, just reference the formula on the previous worksheet, i.e., the one that
returns the date. So, if on the first worksheet you have this formula in A1

=workday("8/31/2007",1,range with holiday dates)

then on the next worksheet you would use

=workday(Sheet1!A1,1,range with holiday dates)

That way you only have to change ONE CELL each month



"Wanna Learn" wrote:

Thanks Duke Carey
This works, but for my clarification, I still have to go in and adjust the
date in quotes in each worksheet. that is
=WORKDAY( "9/5/07",1)
=WORKDAY( "9/6/07",1)
=WORKDAY( "9/7/07",1)
thanks again



"Duke Carey" wrote:

If you make sure to have a list of holiday dates in the workbook, you can use

=workday("8/31/2007",1,range with holiday dates) to get the first working
day of each month (adjusting the date in quotes as appropriate)

Once you get the monthly starting date, each subsequent sheet can use this
same formula, but referencing the date on the earlier sheet.

"Wanna Learn" wrote:

Hello I have a monthly report with worksheets for each working day of the
month, Monday thru Friday. I use the same report every month I just change
the month. the report tilte is the name as the day of the month e.g.
September 4 2007 the next sheet is September5 2007 etc.(I'm always one day
behind, on Sep 5 I will be doing report for Sep 4 ) On the first worksheet
of the month I type in the date. the second sheet of the month I entered the
formula =Sep407!J1+1 . The problem is that every monday I have to adjust the
formula, to compensate for Sat and Sun. Is there a formulat that if I enter
the date on the first worksheet it will automatically update the entire
workbook correctly. thanks

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 318
Default Monthly dates on Reports

DuKe Carey
Yes! this definetly gives me the answer I need thanks

"Duke Carey" wrote:

No, just reference the formula on the previous worksheet, i.e., the one that
returns the date. So, if on the first worksheet you have this formula in A1

=workday("8/31/2007",1,range with holiday dates)

then on the next worksheet you would use

=workday(Sheet1!A1,1,range with holiday dates)

That way you only have to change ONE CELL each month



"Wanna Learn" wrote:

Thanks Duke Carey
This works, but for my clarification, I still have to go in and adjust the
date in quotes in each worksheet. that is
=WORKDAY( "9/5/07",1)
=WORKDAY( "9/6/07",1)
=WORKDAY( "9/7/07",1)
thanks again



"Duke Carey" wrote:

If you make sure to have a list of holiday dates in the workbook, you can use

=workday("8/31/2007",1,range with holiday dates) to get the first working
day of each month (adjusting the date in quotes as appropriate)

Once you get the monthly starting date, each subsequent sheet can use this
same formula, but referencing the date on the earlier sheet.

"Wanna Learn" wrote:

Hello I have a monthly report with worksheets for each working day of the
month, Monday thru Friday. I use the same report every month I just change
the month. the report tilte is the name as the day of the month e.g.
September 4 2007 the next sheet is September5 2007 etc.(I'm always one day
behind, on Sep 5 I will be doing report for Sep 4 ) On the first worksheet
of the month I type in the date. the second sheet of the month I entered the
formula =Sep407!J1+1 . The problem is that every monday I have to adjust the
formula, to compensate for Sat and Sun. Is there a formulat that if I enter
the date on the first worksheet it will automatically update the entire
workbook correctly. thanks



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
Producing expense (monthly) reports in Excel Queen T Excel Discussion (Misc queries) 1 June 1st 07 09:09 PM
How do i repeat dates monthly over the year srpingbokiwi Excel Worksheet Functions 2 November 20th 06 06:23 PM
Help! ISO formula for inconsistent monthly dates Yeah Excel Discussion (Misc queries) 11 August 27th 06 03:32 AM
spreadsheet for tracking reports daily, monthly, yearly and graph Kompare Excel Worksheet Functions 2 April 6th 06 09:28 PM
pivot reports - limit report to last 20 dates Pivot Help Excel Worksheet Functions 1 March 1st 05 09:08 PM


All times are GMT +1. The time now is 07:13 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"