+ Reply to Thread
Results 1 to 4 of 4

Help showing a form of a range.

  1. #1
    Registered User
    Join Date
    11-09-2012
    Location
    Illinois
    MS-Off Ver
    Excel 2010
    Posts
    26

    Help showing a form of a range.

    For my work, I'm creating a payment plan calculator. The sheet uses the payment formula, and based on a specific interest rate, current loan balance, and duration, it calculates monthly payments for the customer. What I'm looking for is a way to add a range to this. For example, based on my current sheet, let's say the customer's regular payment comes out to be 246.12 a month. I want a formula that will calculate an amount that Is +/- "x" amount of dollars for the given monthly payment. So, let's say my threshold is +/- $50.00; I'd have cell A giving the montly payment of 246.12, and then cell B would should something like 196.12-296.12. Any thoughts?

  2. #2
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Help showing a form of a range.

    You could do this with the threshold in a cell, C1

    =A1-C1& " - " &A1+C1
    HTH
    Regards, Jeff

  3. #3
    Registered User
    Join Date
    11-09-2012
    Location
    Illinois
    MS-Off Ver
    Excel 2010
    Posts
    26

    Re: Help showing a form of a range.

    Hey, thank you very much. It worked right away. I have one more question though. I formatted the cells for currency with two decimal places, but for some reason it's still producing results with 12 decimal places. Any idea why??

  4. #4
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Help showing a form of a range.

    Because the cell is text so the format won't work that way...

    Instead, try this...

    =TEXT(A1,"0.00")-C1& " - " &TEXT(A1,"0.00")+C1

+ 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