+ Reply to Thread
Results 1 to 8 of 8

Formula to calculate student loan repayments over certain value

  1. #1
    Registered User
    Join Date
    08-11-2010
    Location
    Cardiff
    MS-Off Ver
    Excel 2007
    Posts
    3

    Formula to calculate student loan repayments over certain value

    Hi everyone. I'm sure that some clever sparks here will be able to enlighten me on using a formula for the function I want.

    I want to calculate the amount of money I will pay over a certain value.
    i.e. Everything over £15000 of my salary will be charged 9% towards student loan repayments.

    I was thinking (for cell N3): =IF (D3>15000=D3*0.9) (but this doesnt work)
    "D3" is the cell which has my salary in.

    I'd really appreciate any help!!

    Thank You!

  2. #2
    Forum Contributor meyero90's Avatar
    Join Date
    03-24-2010
    Location
    New York
    MS-Off Ver
    Excel 2007
    Posts
    202

    Re: Formula to calculate student loan repayments over certain value

    hello and welcome to the forum,

    would you mind attaching a spreadsheet with dummy data in it to better address your issue.

    Thanks
    If I helped, Don't forget to add to my reputation (click on the little scale)
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)

  3. #3
    Forum Contributor meyero90's Avatar
    Join Date
    03-24-2010
    Location
    New York
    MS-Off Ver
    Excel 2007
    Posts
    202

    Re: Formula to calculate student loan repayments over certain value

    Your formula has to be modified because when you mention
    (D3>15000=D3*0.9)
    ..This means they will be taking 90% and not 9% of your salary...So just change it to
    (D3>15000=D3*0.09)
    .

    Here is the FORMULA YOU SHOULD USE:

    =IF(D3>15000,D3*0.09,"")
    You can also drag down the formula after inserting it in N3

    Let me know if you need anything else.
    Last edited by meyero90; 08-11-2010 at 01:03 PM. Reason: typo

  4. #4
    Registered User
    Join Date
    08-11-2010
    Location
    California, USA
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: Formula to calculate student loan repayments over certain value

    Not sure what you mean but try this.

    =IF(D3>15000,(D3*1.09)-D3,0)

  5. #5
    Registered User
    Join Date
    08-11-2010
    Location
    Cardiff
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: Formula to calculate student loan repayments over certain value

    ThankYou for your help.
    Unfortunately this doesn't work so I'm sorry for not making myself clear enough.

    I want the formula to ONLY take 9% of anything OVER 15000. So for example, If my salary was exactly 20000 then only calculate anything for that 5000 over the 15000. (i.e. 9% of 5000 is 450 out of my salary a year).

    Many thanks again.

  6. #6
    Forum Contributor meyero90's Avatar
    Join Date
    03-24-2010
    Location
    New York
    MS-Off Ver
    Excel 2007
    Posts
    202

    Re: Formula to calculate student loan repayments over certain value

    Thanks for the update, there you go:
    =IF(D3>15000,(D3-15000)*0.09,"")
    hope this works

  7. #7
    Registered User
    Join Date
    08-11-2010
    Location
    Cardiff
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: Formula to calculate student loan repayments over certain value

    You're a star!! Simple but keeps me happy!
    Thanks very much.

  8. #8
    Forum Contributor meyero90's Avatar
    Join Date
    03-24-2010
    Location
    New York
    MS-Off Ver
    Excel 2007
    Posts
    202

    Re: Formula to calculate student loan repayments over certain value

    Thanks man! and remember if you're happy with the solution remember to add to my reputation by clicking on the little scale at the far right of my username.

    Glad it works

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1