Help on calculating payroll taxes

Jokes

New Member
Joined
Aug 18, 2012
Messages
17
Hi I need help on writing this formula, never posted here but I am hoping someone can help. I have a model with changing payroll data and have made a tab of forecasted cumulative payroll. I want to forecast the different payroll taxes a business will incur in 2013. For example FUTA tax is only applied on the first $7,000 of salary. I want a statement if Cumulative slaray is less than or equal to 7,000 multiply last pay by .6%. However here is where I am stuck. I also need if cumulative salary is greater than 7,000 by less than last pay multiply the amount it took to get to the threshold by .6%. How would I write such a formula?
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Code:
      ---A---- ---B----
  1    Salary    FUTA  
  2   $ 1,500   $ 9.00 
  3   $ 2,000  $ 12.00 
  4   $ 1,000   $ 6.00 
  5   $ 1,100   $ 6.60 
  6   $ 1,000   $ 6.00 
  7   $ 1,500   $ 2.40 
  8   $ 1,300   $ 0.00 
  9   $ 1,000   $ 0.00

The formula in B2 and copied down is

=ROUND(0.6% * MIN(7000, SUM(A$1:A2)) - SUM(B$1:B1), 2)
 
Last edited:
Upvote 0
Code:
      ---A---- ---B----
  1    Salary    FUTA  
  2   $ 1,500   $ 9.00 
  3   $ 2,000  $ 12.00 
  4   $ 1,000   $ 6.00 
  5   $ 1,100   $ 6.60 
  6   $ 1,000   $ 6.00 
  7   $ 1,500   $ 2.40 
  8   $ 1,300   $ 0.00 
  9   $ 1,000   $ 0.00

The formula in B2 and copied down is

=ROUND(0.6% * MIN(7000, SUM(A$1:A2)) - SUM(B$1:B1), 2)

Wow awesome thank you so much! I am going to try this on all the different taxes in my model and this should work. I may come back with help on the next step which would be to put all my new data into a macro that already exists and just add these line items to the pivot table it is creating. Can't seem to access my work data now, but for now this was a big help!
 
Upvote 0

Forum statistics

Threads
1,214,648
Messages
6,120,726
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top