#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 81
Default Projection formula

Could anyone helpeith a formula
I have several tasks, each starts at a different time & take varying times
to complete
See table below
Task 1 starts in Jan, lasts for 4 months & I spend £1000 (ie £250/month)
Task 2 starts in Feb for 3 months & costs £3000 (£1000/month)

task start time value Jan Feb Mar Apr
1 Jan 4 £1,000 £250 £250 £250 £250
2 Feb 3 £3,000 £1,000 £1,000 £1,000

I need a formula that matches the start date in ColB with the month (Jan,
Feb etc), calculates the spend/month & fills in the table accordingly.
Dates could be spread ove 2 years

Any ideas

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default Projection formula

This doesn't take account of a period that runs over a year end

=IF(AND(MONTH(E$1)=MONTH($B2),MONTH(E$1)<=MONTH($ B2)+$C2-1),$D2/$C2,"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Saintsman" wrote in message
...
Could anyone helpeith a formula
I have several tasks, each starts at a different time & take varying times
to complete
See table below
Task 1 starts in Jan, lasts for 4 months & I spend £1000 (ie £250/month)
Task 2 starts in Feb for 3 months & costs £3000 (£1000/month)

task start time value Jan Feb Mar Apr
1 Jan 4 £1,000 £250 £250 £250 £250
2 Feb 3 £3,000 £1,000 £1,000 £1,000

I need a formula that matches the start date in ColB with the month (Jan,
Feb etc), calculates the spend/month & fills in the table accordingly.
Dates could be spread ove 2 years

Any ideas



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 81
Default Projection formula

Bob
Thanks for quick response
Am I missing something - when I get to the end of a period I want the
spending to stop, this formula doesn't do that

"Bob Phillips" wrote:

This doesn't take account of a period that runs over a year end

=IF(AND(MONTH(E$1)=MONTH($B2),MONTH(E$1)<=MONTH($ B2)+$C2-1),$D2/$C2,"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Saintsman" wrote in message
...
Could anyone helpeith a formula
I have several tasks, each starts at a different time & take varying times
to complete
See table below
Task 1 starts in Jan, lasts for 4 months & I spend £1000 (ie £250/month)
Task 2 starts in Feb for 3 months & costs £3000 (£1000/month)

task start time value Jan Feb Mar Apr
1 Jan 4 £1,000 £250 £250 £250 £250
2 Feb 3 £3,000 £1,000 £1,000 £1,000

I need a formula that matches the start date in ColB with the month (Jan,
Feb etc), calculates the spend/month & fills in the table accordingly.
Dates could be spread ove 2 years

Any ideas




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 81
Default Projection formula

Bob
Deepest apologies - it does work!
Many thanks

"Bob Phillips" wrote:

This doesn't take account of a period that runs over a year end

=IF(AND(MONTH(E$1)=MONTH($B2),MONTH(E$1)<=MONTH($ B2)+$C2-1),$D2/$C2,"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Saintsman" wrote in message
...
Could anyone helpeith a formula
I have several tasks, each starts at a different time & take varying times
to complete
See table below
Task 1 starts in Jan, lasts for 4 months & I spend £1000 (ie £250/month)
Task 2 starts in Feb for 3 months & costs £3000 (£1000/month)

task start time value Jan Feb Mar Apr
1 Jan 4 £1,000 £250 £250 £250 £250
2 Feb 3 £3,000 £1,000 £1,000 £1,000

I need a formula that matches the start date in ColB with the month (Jan,
Feb etc), calculates the spend/month & fills in the table accordingly.
Dates could be spread ove 2 years

Any ideas




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,886
Default Projection formula

Hi

Modifying Bob's formula to
=IF(AND(MONTH(E$1)+12*(YEAR(E$1)-YEAR($B$2))=MONTH($B2),(MONTH(E$1)+12*(YEAR(E$1)-YEAR($B$2)))<=MONTH($B2)+$C2-1),$D2/$C2,"")

will deal with projects continuing beyond 12 months.

--
Regards

Roger Govier


"Saintsman" wrote in message
...
Bob
Deepest apologies - it does work!
Many thanks

"Bob Phillips" wrote:

This doesn't take account of a period that runs over a year end

=IF(AND(MONTH(E$1)=MONTH($B2),MONTH(E$1)<=MONTH($ B2)+$C2-1),$D2/$C2,"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Saintsman" wrote in message
...
Could anyone helpeith a formula
I have several tasks, each starts at a different time & take
varying times
to complete
See table below
Task 1 starts in Jan, lasts for 4 months & I spend £1000 (ie
£250/month)
Task 2 starts in Feb for 3 months & costs £3000 (£1000/month)

task start time value Jan Feb Mar
Apr
1 Jan 4 £1,000 £250 £250 £250 £250
2 Feb 3 £3,000 £1,000 £1,000
£1,000

I need a formula that matches the start date in ColB with the month
(Jan,
Feb etc), calculates the spend/month & fills in the table
accordingly.
Dates could be spread ove 2 years

Any ideas








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 81
Default Projection formula

Thanks very much


"Roger Govier" wrote:

Hi

Modifying Bob's formula to
=IF(AND(MONTH(E$1)+12*(YEAR(E$1)-YEAR($B$2))=MONTH($B2),(MONTH(E$1)+12*(YEAR(E$1)-YEAR($B$2)))<=MONTH($B2)+$C2-1),$D2/$C2,"")

will deal with projects continuing beyond 12 months.

--
Regards

Roger Govier


"Saintsman" wrote in message
...
Bob
Deepest apologies - it does work!
Many thanks

"Bob Phillips" wrote:

This doesn't take account of a period that runs over a year end

=IF(AND(MONTH(E$1)=MONTH($B2),MONTH(E$1)<=MONTH($ B2)+$C2-1),$D2/$C2,"")

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Saintsman" wrote in message
...
Could anyone helpeith a formula
I have several tasks, each starts at a different time & take
varying times
to complete
See table below
Task 1 starts in Jan, lasts for 4 months & I spend £1000 (ie
£250/month)
Task 2 starts in Feb for 3 months & costs £3000 (£1000/month)

task start time value Jan Feb Mar
Apr
1 Jan 4 £1,000 £250 £250 £250 £250
2 Feb 3 £3,000 £1,000 £1,000
£1,000

I need a formula that matches the start date in ColB with the month
(Jan,
Feb etc), calculates the spend/month & fills in the table
accordingly.
Dates could be spread ove 2 years

Any ideas







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
Rota Projection gramps Excel Discussion (Misc queries) 3 April 26th 07 10:18 PM
forecast or projection Dena J Excel Worksheet Functions 0 March 16th 07 07:39 PM
Month End Projection formula? sueshe Excel Worksheet Functions 8 November 28th 06 02:13 PM
Projection of values call_Vishwa Excel Worksheet Functions 0 May 8th 06 11:23 AM
dealing with a projection Larry Holt Charts and Charting in Excel 0 February 15th 06 04:03 PM


All times are GMT +1. The time now is 06:29 AM.

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"