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 Adjusting Timeline with a link

Hi all,

I'm trying to adjust a timeline by adjusting just the start date...can any
one please help me with a formula to do so (producing next month on the next
cell in reference to the previous month in the previous cell)?

eg
start date: Aug-07
Timeline: Aug-07 Sep-07 Oct-07 Nov-07 Dec-07 Jan-08 Feb-08 Mar-08.....

adjusted start date: Nov-07
Adjusted Timeline: Nov-07 Dec-07 Jan-08 Feb-08 Mar-08 Apr-08 May-08
Jun-08.....

Cheers,
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 72
Default Adjusting Timeline with a link

Hi,

Enter start date into A1, then copy the following formula in A2 through A12:

DATE(YEAR(A1),MONTH(A1)+1,DAY(A1))

Let me know if this helps.

Thanks,
Peggy

"¤§Tarzan§¤" wrote:

Hi all,

I'm trying to adjust a timeline by adjusting just the start date...can any
one please help me with a formula to do so (producing next month on the next
cell in reference to the previous month in the previous cell)?

eg
start date: Aug-07
Timeline: Aug-07 Sep-07 Oct-07 Nov-07 Dec-07 Jan-08 Feb-08 Mar-08.....

adjusted start date: Nov-07
Adjusted Timeline: Nov-07 Dec-07 Jan-08 Feb-08 Mar-08 Apr-08 May-08
Jun-08.....

Cheers,

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Adjusting Timeline with a link

Peggy,

You are a genius....Thank you very much.

Dave

"pshepard" wrote:

Hi,

Enter start date into A1, then copy the following formula in A2 through A12:

DATE(YEAR(A1),MONTH(A1)+1,DAY(A1))

Let me know if this helps.

Thanks,
Peggy

"¤§Tarzan§¤" wrote:

Hi all,

I'm trying to adjust a timeline by adjusting just the start date...can any
one please help me with a formula to do so (producing next month on the next
cell in reference to the previous month in the previous cell)?

eg
start date: Aug-07
Timeline: Aug-07 Sep-07 Oct-07 Nov-07 Dec-07 Jan-08 Feb-08 Mar-08.....

adjusted start date: Nov-07
Adjusted Timeline: Nov-07 Dec-07 Jan-08 Feb-08 Mar-08 Apr-08 May-08
Jun-08.....

Cheers,

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Adjusting Timeline with a link

To further continue with the above:

If I had a Timeline, i would like to locate a cell adjacent to a particular
date in order to start a flow of data...is there a formula for that?

eg
scenario required: data = 4.5% from Aug-07
A B
1. May-07
2. Jun-07
3. Jul-07
4. Aug-07 4.5%
5. Sep-07 4.5%
6. Oct-07 4.5%

scenario2 required: data = $593,299 at Jun-07
A B
1. May-07
2. Jun-07 $593,299
3. Jul-07
4. Aug-07
5. Sep-07
6. Oct-07

Thanks heaps,


Dave


"pshepard" wrote:

Hi,

Enter start date into A1, then copy the following formula in A2 through A12:

DATE(YEAR(A1),MONTH(A1)+1,DAY(A1))

Let me know if this helps.

Thanks,
Peggy

"¤§Tarzan§¤" wrote:

Hi all,

I'm trying to adjust a timeline by adjusting just the start date...can any
one please help me with a formula to do so (producing next month on the next
cell in reference to the previous month in the previous cell)?

eg
start date: Aug-07
Timeline: Aug-07 Sep-07 Oct-07 Nov-07 Dec-07 Jan-08 Feb-08 Mar-08.....

adjusted start date: Nov-07
Adjusted Timeline: Nov-07 Dec-07 Jan-08 Feb-08 Mar-08 Apr-08 May-08
Jun-08.....

Cheers,

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 72
Default Adjusting Timeline with a link

Hi Tarzan,

These formulas will leave the cell blank if not true:

=IF(AND(MONTH(A1)=8,YEAR(A1)=2007),4.5%,"")

=IF(AND(MONTH(A1)=6,YEAR(A1)=2007),593299,"")

Let me know if this helps.

Thanks,
Peggy

"¤§Tarzan§¤" wrote:

To further continue with the above:

If I had a Timeline, i would like to locate a cell adjacent to a particular
date in order to start a flow of data...is there a formula for that?

eg
scenario required: data = 4.5% from Aug-07
A B
1. May-07
2. Jun-07
3. Jul-07
4. Aug-07 4.5%
5. Sep-07 4.5%
6. Oct-07 4.5%

scenario2 required: data = $593,299 at Jun-07
A B
1. May-07
2. Jun-07 $593,299
3. Jul-07
4. Aug-07
5. Sep-07
6. Oct-07

Thanks heaps,


Dave


"pshepard" wrote:

Hi,

Enter start date into A1, then copy the following formula in A2 through A12:

DATE(YEAR(A1),MONTH(A1)+1,DAY(A1))

Let me know if this helps.

Thanks,
Peggy

"¤§Tarzan§¤" wrote:

Hi all,

I'm trying to adjust a timeline by adjusting just the start date...can any
one please help me with a formula to do so (producing next month on the next
cell in reference to the previous month in the previous cell)?

eg
start date: Aug-07
Timeline: Aug-07 Sep-07 Oct-07 Nov-07 Dec-07 Jan-08 Feb-08 Mar-08.....

adjusted start date: Nov-07
Adjusted Timeline: Nov-07 Dec-07 Jan-08 Feb-08 Mar-08 Apr-08 May-08
Jun-08.....

Cheers,



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Adjusting Timeline with a link

Thank you once again...

I think you are too good with Excel for me to let you go...
Am I able to contact you directly next time for more excel help? My email
address is .

Thanks again Peggy.

David

"pshepard" wrote:

Hi Tarzan,

These formulas will leave the cell blank if not true:

=IF(AND(MONTH(A1)=8,YEAR(A1)=2007),4.5%,"")

=IF(AND(MONTH(A1)=6,YEAR(A1)=2007),593299,"")

Let me know if this helps.

Thanks,
Peggy

"¤§Tarzan§¤" wrote:

To further continue with the above:

If I had a Timeline, i would like to locate a cell adjacent to a particular
date in order to start a flow of data...is there a formula for that?

eg
scenario required: data = 4.5% from Aug-07
A B
1. May-07
2. Jun-07
3. Jul-07
4. Aug-07 4.5%
5. Sep-07 4.5%
6. Oct-07 4.5%

scenario2 required: data = $593,299 at Jun-07
A B
1. May-07
2. Jun-07 $593,299
3. Jul-07
4. Aug-07
5. Sep-07
6. Oct-07

Thanks heaps,


Dave


"pshepard" wrote:

Hi,

Enter start date into A1, then copy the following formula in A2 through A12:

DATE(YEAR(A1),MONTH(A1)+1,DAY(A1))

Let me know if this helps.

Thanks,
Peggy

"¤§Tarzan§¤" wrote:

Hi all,

I'm trying to adjust a timeline by adjusting just the start date...can any
one please help me with a formula to do so (producing next month on the next
cell in reference to the previous month in the previous cell)?

eg
start date: Aug-07
Timeline: Aug-07 Sep-07 Oct-07 Nov-07 Dec-07 Jan-08 Feb-08 Mar-08.....

adjusted start date: Nov-07
Adjusted Timeline: Nov-07 Dec-07 Jan-08 Feb-08 Mar-08 Apr-08 May-08
Jun-08.....

Cheers,

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 put a timeline into a calendar? Nat Excel Discussion (Misc queries) 1 August 15th 06 07:49 PM
Timeline graph? Kytro Excel Discussion (Misc queries) 1 June 1st 06 06:04 AM
Can I link timeline labels to a line chart? hizzle Charts and Charting in Excel 1 December 6th 05 09:36 AM
Timeline Problem Andibevan Charts and Charting in Excel 4 May 15th 05 04:53 AM
Timeline Chart? ckrogers Charts and Charting in Excel 3 March 17th 05 09:20 PM


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