+ Reply to Thread
Results 1 to 17 of 17

NJ Realty Transfer Fee

  1. #1
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Lightbulb NJ Realty Transfer Fee

    I'm probably between a basic to intermediate level of user but I really need help putting together a formula for calculating a NJ real estate transfer fee based on a sale price. There are websites with calculators but I need to integrate a formula into a spreadsheet. Here's a sample calculator:

    Here's how the fee is calculated:

    Any help would be appreciated!!

    - Kunal

  2. #2
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Re: NJ Realty Transfer Fee

    Wouldn't let me post links for some reason:

  3. #3
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 Version 2404 Win 11 Home 64 Bit
    Posts
    23,865

    Re: NJ Realty Transfer Fee

    If you need to post a link, since you have less than 10 posts, you will need to type it out manually and not copy and paste.
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  4. #4
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Re: NJ Realty Transfer Fee

    lol sorry!

  5. #5
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Re: NJ Realty Transfer Fee

    for the sample calculator just google NJ Realty Transfer fee. The 2nd link is the 2nd link when you google NJ Realty Transfer Fee.

  6. #6
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 2019
    Posts
    17,535

    Re: NJ Realty Transfer Fee

    Is this the site? https://www.nj.gov/treasury/taxation/realty_over.shtml
    It may be helpful if we could see the layout of the spreadsheet, instructions are given in the banner at the top of the page.
    Let us know if you have any questions.
    Consider taking the time to add to the reputation of everybody that has taken the time to respond to your query.

  7. #7
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Re: NJ Realty Transfer Fee

    Quote Originally Posted by JeteMc View Post
    Is this the site?
    It may be helpful if we could see the layout of the spreadsheet, instructions are given in the banner at the top of the page.
    Let us know if you have any questions.
    Thats the correct website!

    The spreadsheet has a lot of other expenses & data about the property but the calculator just needs to take the sales price and run it through a calculator. That should give us a transfer tax amount just based off the sales price

  8. #8
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,446

    Re: NJ Realty Transfer Fee

    Administrative note
    Please update your profile as necessary to properly reflect the exact version(s) of Excel your question relates to. Members tailor answers based on your Excel version. Your profile does not indicate your version.
    Thanks

  9. #9
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,446

    Re: NJ Realty Transfer Fee

    Administrative Note:

    Please don't quote entire posts unnecessarily. They clutter threads and make them hard to read.
    Use the "Quick reply" instead
    Thanks

  10. #10
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Re: NJ Realty Transfer Fee

    Got it, just updated my profile. I'd like to ideally use this on a google sheets workbook that I share with my company.

  11. #11
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Re: NJ Realty Transfer Fee

    Here's a concise version of how the calculation should work:

    A. REALTY TRANSFER FEES IMPOSED ON SELLER, TOTAL CONSIDERATION NOT IN EXCESS OF $350,000
    $2.00/$500 of consideration not in excess of $150,000;
    $3.35/$500 of consideration in excess of $150,000 but not in excess of $200,000;
    $3.90/$500 of consideration in excess of $200,000 but not in excess of $350,000.

    REALTY TRANSFER FEES IMPOSED ON SELLER, TOTAL CONSIDERATION IN EXCESS OF $350,000
    $2.90/$500 of consideration not in excess of $150,000;
    $4.25/$500 of consideration in excess of $150,000 but not in excess of $200,000;
    $4.80/$500 of consideration in excess of $200,000 but not in excess of $550,000;
    $5.30/$500 of consideration in excess of $550,000 but not in excess of $850,000;
    $5.80/$500 of consideration in excess of $850,000 but not in excess of $1,000,000;
    $6.05/$500 of consideration in excess of $1,000,000.

    If over $1M, theres an additional 1% on top of the normal Transfer Fee

  12. #12
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 2019
    Posts
    17,535

    Re: NJ Realty Transfer Fee

    From what little I know about google sheets I believe that this will work as uses only basic functions.
    I set up two ranges, one for 350k and under and the other for over 350k
    The formulas to give the fee per step are: =IF(B$1>350000,0,MAX(0,MIN(B$1-K6,K7-K6)/500*J7))
    and: =IF(B$1<=350000,0,MAX(0,MIN(B$1-K17,K18-K17)/500*J18))
    The formula for the additional 1% is: =IF(B1>K27,B1*J27,0)
    The sales price is placed into cell B1
    The tax is displayed in cell B2 using: =SUM(L7:L27)
    Let us know if you have any questions.
    Attached Files Attached Files

  13. #13
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Re: NJ Realty Transfer Fee

    This is literally perfect, thank you soo much!!

  14. #14
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Re: NJ Realty Transfer Fee

    Is there a way for me to have that formula in one cell? So that when I have a line of data with the data, the transfer fee will populate?Screen Shot 2020-04-26 at 1.28.34 PM.png

  15. #15
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 2019
    Posts
    17,535

    Re: NJ Realty Transfer Fee

    Although the attached file doesn't put the formula into one cell, it does arrange the calculations that were listed in post #12 horizontally in columns F:P so that they may be dragged from row to row.
    Note that the range of green (manual inputs) and blue (calculations) cells may be moved and/or hidden for aesthetic purposes.
    Let us know if you have any questions.
    Attached Files Attached Files

  16. #16
    Registered User
    Join Date
    04-22-2020
    Location
    NJ
    MS-Off Ver
    Excel 2019 Mac OS
    Posts
    10

    Re: NJ Realty Transfer Fee

    Just added it and it works flawlessly. Thank you so much for your time!

  17. #17
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 2019
    Posts
    17,535

    Re: NJ Realty Transfer Fee

    You're Welcome. Thank You for the feedback and for marking the thread as 'Solved'. I hope that you have a blessed day.

+ 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. Transfer Help
    By marinela in forum Excel General
    Replies: 1
    Last Post: 04-20-2017, 03:55 PM
  2. Transfer rows given cell shows transfer
    By Puggwash63 in forum Excel General
    Replies: 7
    Last Post: 11-02-2016, 05:45 PM
  3. Transfer & confirm data transfer between workbooks
    By fenfool in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-02-2015, 01:10 PM
  4. Replies: 4
    Last Post: 01-18-2013, 10:49 PM
  5. Transfer xls to pps
    By Zygan in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-30-2007, 11:04 PM
  6. Transfer row
    By johnny33 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-14-2007, 12:46 AM
  7. Transfer a row if....
    By koda86 in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 12-13-2006, 07:57 AM

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