Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Rest of the Year Calculation

HI,

I am trying to make a cormula that calculates what someone would be on time
to achieve, based on their current number and then project what they would be
on time to hit based on how many months are left in the year.

For June, it being half way, the number is multiplied by 2, that one is
easy...

For some reason, I am having a hard time figuring out what the rest of the
calculations would be for each month.

Any ideas would be greatly appreciated
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,240
Default Rest of the Year Calculation

Gfunc wrote:
HI,

I am trying to make a cormula that calculates what someone would be on time
to achieve, based on their current number and then project what they would be
on time to hit based on how many months are left in the year.

For June, it being half way, the number is multiplied by 2, that one is
easy...

For some reason, I am having a hard time figuring out what the rest of the
calculations would be for each month.

Any ideas would be greatly appreciated


Actually, for June it would be divided by 6 (June is the 6th month) and
multiplied by 12. Hope that helps you get the rest of the way.
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Rest of the Year Calculation

I came up with this:

=IF(R2="August",S5*(12/8),(IF(R2="September",S5*(12/9),(IF(R2="October",S5*(12/10),(IF(R2="November",S5*(12/11),(IF(R2="December",S5*(12/12),(IF(R2="June",S5*(12/6),(IF(R2="July",S5*(12/7))))))))))))))

unfortunately I can only get 7 on there...

Gfunc

"Glenn" wrote:

Gfunc wrote:
HI,

I am trying to make a cormula that calculates what someone would be on time
to achieve, based on their current number and then project what they would be
on time to hit based on how many months are left in the year.

For June, it being half way, the number is multiplied by 2, that one is
easy...

For some reason, I am having a hard time figuring out what the rest of the
calculations would be for each month.

Any ideas would be greatly appreciated


Actually, for June it would be divided by 6 (June is the 6th month) and
multiplied by 12. Hope that helps you get the rest of the way.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,059
Default Rest of the Year Calculation

On Aug 25, 2:50*pm, Gfunc wrote:
I came up with this:
=IF(R2="August",S5*(12/8),(IF(R2="September",S5*(12/9),
(IF(R2="October",S5**(12/10),(IF(R2="November",S5*(12/11),
(IF(R2="December",S5*(12/12),(IF(R2="J*une",S5*(12/6),
(IF(R2="July",S5*(12/7))))))))))))))
unfortunately I can only get 7 on there...


First, it would be easier if R2 contained a date (e.g. 8/31/2008)
instead of text. You can use the custom format "mmmm" is you want to
see just the name of the month.

With that change, your formula can be simplified as follows:

=S5*12/month(R2)

That gives the same result as your IF() expression. I cannot say that
it gives you a meaningful result. Your requirements are not clear to
me.
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,240
Default Rest of the Year Calculation

Gfunc wrote:
I came up with this:

=IF(R2="August",S5*(12/8),(IF(R2="September",S5*(12/9),(IF(R2="October",S5*(12/10),(IF(R2="November",S5*(12/11),(IF(R2="December",S5*(12/12),(IF(R2="June",S5*(12/6),(IF(R2="July",S5*(12/7))))))))))))))

unfortunately I can only get 7 on there...

Gfunc


If you actually have the text names of the month in R2, use the following:

=S5*12/((((FIND(LEFT(R2,3),"JanFebMarAprMayJunJulAugSepOc tNovDec"))-1)/3)+1)


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,480
Default Rest of the Year Calculation

Hi Try
=S5*12/MONTH(--("1"&R2&"2008"))

--
Regards
Roger Govier

"Gfunc" wrote in message
...
I came up with this:

=IF(R2="August",S5*(12/8),(IF(R2="September",S5*(12/9),(IF(R2="October",S5*(12/10),(IF(R2="November",S5*(12/11),(IF(R2="December",S5*(12/12),(IF(R2="June",S5*(12/6),(IF(R2="July",S5*(12/7))))))))))))))

unfortunately I can only get 7 on there...

Gfunc

"Glenn" wrote:

Gfunc wrote:
HI,

I am trying to make a cormula that calculates what someone would be on
time
to achieve, based on their current number and then project what they
would be
on time to hit based on how many months are left in the year.

For June, it being half way, the number is multiplied by 2, that one is
easy...

For some reason, I am having a hard time figuring out what the rest of
the
calculations would be for each month.

Any ideas would be greatly appreciated


Actually, for June it would be divided by 6 (June is the 6th month) and
multiplied by 12. Hope that helps you get the rest of the way.

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 to stop IRR calculation at a particular year... Mawaller Excel Discussion (Misc queries) 8 July 5th 07 04:54 AM
Year Calculation AmyBC Excel Worksheet Functions 4 January 3rd 07 11:12 PM
Fiscal Year Calculation DaGo21 Excel Worksheet Functions 13 February 7th 06 10:16 AM
Calculation with Working day of the year Box666 Excel Discussion (Misc queries) 4 November 10th 05 06:33 PM
Is the IRR calculation based on cash flows at beginning of year? sammad Excel Worksheet Functions 1 September 6th 05 05:15 PM


All times are GMT +1. The time now is 09:07 AM.

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"