Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Warrain
 
Posts: n/a
Default Calculating monthly budget expenses

I am doing an annual budget my months. I'm looking for a formula to calculate
the monthly cost of salaries where there is an increase during the year.
Here is my example:
Annual salary $50,000
Annual increase $3,000
Date of increase Oct 1
Period of budget Jul 1 to Jun 30.
I need a formula to calculate each month's salary cost. The annual salary is
simply spread evenly over the year, one twelfth each month. Each month I need
to see whether there has been an increase during or prior to that month, if
yes, calculate the amount of that increase to be included in the month.
Very much appreciate any help you can give.
Best regards.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bpeltzer
 
Posts: n/a
Default Calculating monthly budget expenses

My general approach is:
=(base_salary + if(on/after increase_date,increase_amount,0))/12
So if each month is in its own column, say from B through K, with the
starting date for the month in row 2:
=(50000 + if(b$2=date(2006,10,1),3000,0))/12
If you enter this in column B and autofill it into subsequent months, it
will pick up the increase beginning in October.


"Warrain" wrote:

I am doing an annual budget my months. I'm looking for a formula to calculate
the monthly cost of salaries where there is an increase during the year.
Here is my example:
Annual salary $50,000
Annual increase $3,000
Date of increase Oct 1
Period of budget Jul 1 to Jun 30.
I need a formula to calculate each month's salary cost. The annual salary is
simply spread evenly over the year, one twelfth each month. Each month I need
to see whether there has been an increase during or prior to that month, if
yes, calculate the amount of that increase to be included in the month.
Very much appreciate any help you can give.
Best regards.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Warrain
 
Posts: n/a
Default Calculating monthly budget expenses

Thank you so much.
What if the increase date is during a month rather than the beginning of the
month? If I change the increase date to say Oct 15, then the formula brings
the increase in from Nov 1 whereas I'd like to bring in the proportion for
Oct 15 to 31 into October.

"bpeltzer" wrote:

My general approach is:
=(base_salary + if(on/after increase_date,increase_amount,0))/12
So if each month is in its own column, say from B through K, with the
starting date for the month in row 2:
=(50000 + if(b$2=date(2006,10,1),3000,0))/12
If you enter this in column B and autofill it into subsequent months, it
will pick up the increase beginning in October.


"Warrain" wrote:

I am doing an annual budget my months. I'm looking for a formula to calculate
the monthly cost of salaries where there is an increase during the year.
Here is my example:
Annual salary $50,000
Annual increase $3,000
Date of increase Oct 1
Period of budget Jul 1 to Jun 30.
I need a formula to calculate each month's salary cost. The annual salary is
simply spread evenly over the year, one twelfth each month. Each month I need
to see whether there has been an increase during or prior to that month, if
yes, calculate the amount of that increase to be included in the month.
Very much appreciate any help you can give.
Best regards.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
vezerid
 
Posts: n/a
Default Calculating monthly budget expenses

I am assuming that the headings for the months are the first day of the
month. Otherwise we will need a somewhat more elaborate formula. I am
also assuming that increase starts counting on the day quoted. Then,
with the month-first-days being in cells J1:J12 and increase date being
in B2, you can use the following formula:

=(50000+IF(MONTH(J1)<MONTH($B$2),0,IF(MONTH(J1)MO NTH($B$2),3000,3000*(DATE(YEAR($B$2),MONTH($B$2)+1 ,1)-$B$2)/(DATE(YEAR($B$2),MONTH($B$2)+1,1)-DATE(YEAR($B$2),MONTH($B$2),1)))))/12

HTH
Kostis Vezerides

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Warrain
 
Posts: n/a
Default Calculating monthly budget expenses

Just brilliant Kostis. Thanks so much for solving my dilemma.
regards from Australia
Warren

"vezerid" wrote:

I am assuming that the headings for the months are the first day of the
month. Otherwise we will need a somewhat more elaborate formula. I am
also assuming that increase starts counting on the day quoted. Then,
with the month-first-days being in cells J1:J12 and increase date being
in B2, you can use the following formula:

=(50000+IF(MONTH(J1)<MONTH($B$2),0,IF(MONTH(J1)MO NTH($B$2),3000,3000*(DATE(YEAR($B$2),MONTH($B$2)+1 ,1)-$B$2)/(DATE(YEAR($B$2),MONTH($B$2)+1,1)-DATE(YEAR($B$2),MONTH($B$2),1)))))/12

HTH
Kostis Vezerides




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Warrain
 
Posts: n/a
Default Calculating monthly budget expenses

The formula works fine from July to December (my budget runs from July to
June). From January, however, the formula doesn't take into account any of
the increase amount, just the original annual salary. Appreciate your further
help please Kostis.

"vezerid" wrote:

I am assuming that the headings for the months are the first day of the
month. Otherwise we will need a somewhat more elaborate formula. I am
also assuming that increase starts counting on the day quoted. Then,
with the month-first-days being in cells J1:J12 and increase date being
in B2, you can use the following formula:

=(50000+IF(MONTH(J1)<MONTH($B$2),0,IF(MONTH(J1)MO NTH($B$2),3000,3000*(DATE(YEAR($B$2),MONTH($B$2)+1 ,1)-$B$2)/(DATE(YEAR($B$2),MONTH($B$2)+1,1)-DATE(YEAR($B$2),MONTH($B$2),1)))))/12

HTH
Kostis Vezerides


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
Divide Monthly Sales Budget to Day Budget Benedikt Fridbjornsson Excel Worksheet Functions 2 January 10th 06 03:42 PM
Template for tracking monthly business expenses lkeller New Users to Excel 1 August 31st 05 04:14 AM
Pbl calculating US$ values Joseph Excel Discussion (Misc queries) 1 July 13th 05 04:28 PM
Need Budget Template for Bills, expenses, credit card balances wh. Allicia New Users to Excel 1 February 15th 05 09:01 PM
Find and Replace miket_jam Excel Discussion (Misc queries) 3 January 27th 05 02:15 AM


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