+ Reply to Thread
Results 1 to 7 of 7

Increase value in cell based on range

  1. #1
    Registered User
    Join Date
    01-16-2010
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    5

    Increase value in cell based on range

    I have a rate sheet attached for real estate title fee and I want to be able to have excel calculate and increase rate based on an offer price.

    Example: If I have an Offer for $300,000 my rate would be $1,030.

    Problem I am having is the rates change based on price.

    Base rate is $375 up to $15,000 purchase price then raises by $3 per 1000 up to $100,000. After $100,001 the rate raises by $2 per 1000...

    $15,000 to $100,000 = $3 per $1,000
    100,001 to 500,000 = 2 per 1,000
    500,001 to 1,000,000 = 1 per 1,000

    Thank you for any help you can provide.

    title rates.pdf

  2. #2
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,749

    Re: Increase value in cell based on range

    so is it simply the rate that applies or do you have it stepped

    ie

    if 200,000
    then
    200,000 = 200 * 2
    or is it 375+ then for the next 85,000 = 85*$3 and then the last 100,000 = 100* $2

    so 375+ 255 + 200

    also what do you do with
    199,999
    is that round down to
    199,000


    assuming the value is not below 15,000 and we round down

    try
    =IF(A1>500000, INT((A1-500000)/1000)*1+1430,IF(A1>100000, INT((A1-100000)/1000)*2+630,INT((A1-15000)/1000)*3+375))
    Last edited by etaf; 11-18-2013 at 02:17 PM.
    Wayne
    if my assistance has helped, and only if you wish to , there is an "* Add Reputation" on the left hand side - you can add to my reputation here

    If you have a solution to your thread - Please mark your thread solved do the following: >
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  3. #3
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Increase value in cell based on range

    Here's what I came up with for the compounded rate, just using MIN and MAX

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  4. #4
    Registered User
    Join Date
    01-16-2010
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: Increase value in cell based on range

    Thanks etaf and ChemistB for your help.

    The only issue I still have with etaf's solution is the base rate of $375...not that I sell anything less then $15k, but I need the lowest number to be $375. If I enter say $13,000 as my price I get $369 and not the $375 min fee.

    Great work!!

  5. #5
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,749

    Re: Increase value in cell based on range

    so whats the rule to get 369 instead of 375 ?
    thats $6 less for 2000 less
    so does the 375 reduce by $3 per 1000 below

    i think this works for those conditions
    =IF(A1>500000, INT((A1-500000)/1000)*1+1430,IF(A1>100000, INT((A1-100000)/1000)*2+630,IF(A1>15000,INT((A1-15000)/1000)*3+375,375)))

  6. #6
    Registered User
    Join Date
    01-16-2010
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: Increase value in cell based on range

    etaf, that's perfect. Anything below the $15,000 now defaults to $375....awesome!! Thank you!!

  7. #7
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,749

    Re: Increase value in cell based on range

    i would check out a few values and give it a bit of test before putting into production

    if it works OK
    if my assistance has helped, and only if you wish to , there is a reputation icon * on the left hand side - you can add to my reputation here
    If you have a solution to your thread - Please mark your thread solved do the following: >
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 3
    Last Post: 12-16-2012, 12:49 PM
  2. Increase cell range by 2 when dragging down
    By NBC_Brian in forum Excel General
    Replies: 7
    Last Post: 06-03-2011, 03:29 PM
  3. Replies: 1
    Last Post: 03-15-2009, 05:38 AM
  4. Auto increase # based on other cell
    By tstanard in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-06-2007, 06:19 PM
  5. [SOLVED] Increase cell range by percentage
    By SpaceCamel in forum Excel General
    Replies: 2
    Last Post: 03-15-2006, 03:40 PM

Tags for this Thread

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