 {"id":8380,"date":"2026-01-01T15:38:22","date_gmt":"2026-01-01T14:38:22","guid":{"rendered":"https:\/\/www.altertax-avocats.com\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/"},"modified":"2026-01-01T15:38:22","modified_gmt":"2026-01-01T14:38:22","slug":"calculating-ifi-currentyear-guide-scale-to-avoid-errors","status":"publish","type":"post","link":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/","title":{"rendered":"Calculating ifi 2026: guide + scale [to avoid errors]."},"content":{"rendered":"\n \n        <h1>IFI calculation: Complete method and valuation rules<\/h1>\n        <div id=\"simu-zloop\">\n        <div class=\"simulator-wrapper\" id=\"simu-zloop\">\n<div class=\"ifi-calculator\">\n<h3 class=\"ifi-title\">\ud83c\udfe0 IFI Calculation Simulator<\/h3>\n<p class=\"ifi-subtitle\">Calculate your real estate wealth tax<\/p>\n<div class=\"ifi-input-section\">\n<div class=\"ifi-input-group\">\n<label class=\"ifi-label\" for=\"ifi-primary-residence\">\n  Principal residence (\u20ac)\n <span class=\"ifi-tooltip\">\ud83d\udca1 Automatic 30% allowance<\/span>\n<\/label>\n<input class=\"ifi-input\" id=\"ifi-primary-residence\" min=\"0\" placeholder=\"500000\" step=\"1000\" type=\"number\">\n<\/div>\n<div class=\"ifi-input-group\">\n<label class=\"ifi-label\" for=\"ifi-other-properties\">\n  Other real estate (\u20ac)\n <span class=\"ifi-tooltip\">Second homes, land, rentals&#8230;<\/span>\n<\/label>\n<input class=\"ifi-input\" id=\"ifi-other-properties\" min=\"0\" placeholder=\"800000\" step=\"1000\" type=\"number\">\n<\/div>\n<div class=\"ifi-input-group\">\n<label class=\"ifi-label\" for=\"ifi-debts\">\n  Deductible debts (\u20ac)\n <span class=\"ifi-tooltip\">Loans, unpaid property taxes&#8230;<\/span>\n<\/label>\n<input class=\"ifi-input\" id=\"ifi-debts\" min=\"0\" placeholder=\"0\" step=\"1000\" type=\"number\">\n<\/div>\n<button class=\"ifi-calculate-btn\" onclick=\"window.calculateIFI()\">\n  Calculate my IFI\n            <\/button>\n<\/div>\n<div class=\"ifi-results\" id=\"ifi-results\" style=\"display: none;\">\n<div class=\"ifi-result-header\">\n<h4>\ud83d\udcca Calculation results<\/h4>\n<\/div>\n<div class=\"ifi-summary-cards\">\n<div class=\"ifi-card\">\n<div class=\"ifi-card-label\">Gross assets<\/div>\n<div class=\"ifi-card-value\" id=\"ifi-gross-wealth\">0 \u20ac<\/div>\n<\/div>\n<div class=\"ifi-card\">\n<div class=\"ifi-card-label\">Net taxable assets<\/div>\n<div class=\"ifi-card-value highlight\" id=\"ifi-net-wealth\">0 \u20ac<\/div>\n<\/div>\n<div class=\"ifi-card ifi-card-tax\">\n<div class=\"ifi-card-label\">IFI to pay<\/div>\n<div class=\"ifi-card-value\" id=\"ifi-tax-amount\">0 \u20ac<\/div>\n<\/div>\n<\/div>\n<div class=\"ifi-breakdown\" id=\"ifi-breakdown\"><\/div>\n<div class=\"ifi-info-box\" id=\"ifi-discount-info\" style=\"display: none;\"><\/div>\n<div class=\"ifi-info-box ifi-success\" id=\"ifi-below-threshold\" style=\"display: none;\">\n  \u2705 Your assets are below the \u20ac1,300,000 threshold. You are not liable for the IFI. \n            <\/div>\n<\/div>\n<\/div>\n<\/div>\n<script type=\"text\/javascript\">\nwindow.calculateIFI = function() {\n    \/\/ Get input values\n    var primaryResidence = parseFloat(document.getElementById('ifi-primary-residence').value) || 0;\n    var otherProperties = parseFloat(document.getElementById('ifi-other-properties').value) || 0;\n    var debts = parseFloat(document.getElementById('ifi-debts').value) || 0;\n    \n    \/\/ Apply 30% discount on primary residence\n    var primaryResidenceAfterDiscount = primaryResidence * 0.7;\n    \n    \/\/ Calculate gross wealth\n    var grossWealth = primaryResidenceAfterDiscount + otherProperties;\n    \n    \/\/ Calculate net taxable wealth\n    var netWealth = grossWealth - debts;\n    \n    \/\/ Show results section\n    document.getElementById('ifi-results').style.display = 'block';\n    \n    \/\/ Display summary values\n    document.getElementById('ifi-gross-wealth').textContent = window.formatNumber(grossWealth) + ' \u20ac';\n    document.getElementById('ifi-net-wealth').textContent = window.formatNumber(netWealth) + ' \u20ac';\n    \n    \/\/ Check if below threshold\n    if (netWealth <1300000) { document.getElementById('ifi-below-threshold').style.display = 'block'; document.getElementById('ifi-breakdown').style.display = 'none'; document.getElementById('ifi-discount-info').style.display = 'none'; document.getElementById('ifi-tax-amount').textContent = '0 \u20ac'; return; } else { document.getElementById('ifi-below-threshold').style.display = 'none'; document.getElementById('ifi-breakdown').style.display = 'block'; } \/\/ Calculate IFI var ifiAmount = window.calculateIFIAmount(netWealth); \/\/ Apply discount if applicable (between 1.3M and 1.4M) var discount = 0; if (netWealth>= 1300000 && netWealth <= 1400000) { discount = 17500 - (0.0125 * (netWealth - 1300000)); if (discount> ifiAmount) {\n            discount = ifiAmount;\n        }\n        ifiAmount = ifiAmount - discount;\n        \n        document.getElementById('ifi-discount-info').style.display = 'block';\n        document.getElementById('ifi-discount-info').innerHTML = \n            '\ud83c\udf81 <strong>D\u00e9cote applicable :<\/strong> Votre patrimoine se situe dans la zone de d\u00e9cote (1,3M - 1,4M \u20ac). R\u00e9duction de ' + \n            window.formatNumber(discount) + ' \u20ac appliqu\u00e9e.';\n    } else {\n        document.getElementById('ifi-discount-info').style.display = 'none';\n    }\n    \n    \/\/ Display final tax amount\n    document.getElementById('ifi-tax-amount').textContent = window.formatNumber(ifiAmount) + ' \u20ac';\n    \n    \/\/ Display breakdown\n    window.displayBreakdown(netWealth, ifiAmount);\n    \n    \/\/ Scroll to results\n    document.getElementById('ifi-results').scrollIntoView({ behavior: 'smooth', block: 'nearest' });\n};\n\nwindow.calculateIFIAmount = function(netWealth) {\n    var brackets = [\n        { limit: 800000, rate: 0 },\n        { limit: 1300000, rate: 0.005 },\n        { limit: 2570000, rate: 0.007 },\n        { limit: 5000000, rate: 0.01 },\n        { limit: 10000000, rate: 0.0125 },\n        { limit: Infinity, rate: 0.015 }\n    ];\n    \n    var totalTax = 0;\n    var previousLimit = 0;\n    \n    for (var i = 0; i <brackets.length; i++) { if (netWealth> previousLimit) {\n            var taxableInBracket = Math.min(netWealth, brackets[i].limit) - previousLimit;\n            if (taxableInBracket > 0) {\n                totalTax += taxableInBracket * brackets[i].rate;\n            }\n            previousLimit = brackets[i].limit;\n        }\n        if (netWealth <= brackets[i].limit) { break; } } return totalTax; }; window.displayBreakdown = function(netWealth, finalTax) { var brackets = [ { min: 0, max: 800000, rate: '0%', label: 'Jusqu'\u00e0 800 000 \u20ac' }, { min: 800000, max: 1300000, rate: '0,5%', label: 'De 800 000 \u00e0 1 300 000 \u20ac' }, { min: 1300000, max: 2570000, rate: '0,7%', label: 'De 1 300 000 \u00e0 2 570 000 \u20ac' }, { min: 2570000, max: 5000000, rate: '1%', label: 'De 2 570 000 \u00e0 5 000 000 \u20ac' }, { min: 5000000, max: 10000000, rate: '1,25%', label: 'De 5 000 000 \u00e0 10 000 000 \u20ac' }, { min: 10000000, max: Infinity, rate: '1,5%', label: 'Au-del\u00e0 de 10 000 000 \u20ac' } ]; var breakdownHTML = '<h5 class=\"ifi-breakdown-title\">D\u00e9tail par tranche :<\/h5><div class=\"ifi-bracket-list\">';\n    \n    for (var i = 0; i <brackets.length; i++) { var bracket = brackets[i]; var amountInBracket = 0; if (netWealth> bracket.min) {\n            amountInBracket = Math.min(netWealth, bracket.max) - bracket.min;\n        }\n        \n        var isActive = amountInBracket > 0;\n        var activeClass = isActive ? 'active' : '';\n        \n        breakdownHTML += '<div class=\"ifi-bracket-item ' + activeClass + '\">';\n        breakdownHTML += '<div class=\"ifi-bracket-info\">';\n        breakdownHTML += '<span class=\"ifi-bracket-label\">' + bracket.label + '<\/span>';\n        breakdownHTML += '<span class=\"ifi-bracket-rate\">' + bracket.rate + '<\/span>';\n        breakdownHTML += '<\/div>';\n        \n        if (isActive) {\n            breakdownHTML += '<div class=\"ifi-bracket-amount\">' + window.formatNumber(amountInBracket) + ' \u20ac imposable<\/div>';\n        }\n        \n        breakdownHTML += '<\/div>';\n    }\n    \n    breakdownHTML += '<\/div>';\n    \n    document.getElementById('ifi-breakdown').innerHTML = breakdownHTML;\n};\n\nwindow.formatNumber = function(num) {\n    return Math.round(num).toString().replace(\/B(?=(d{3})+(?!d))\/g, ' ');\n};\n\n\/\/ Initialize on page load\ndocument.addEventListener('DOMContentLoaded', function() {\n    \/\/ Add input event listeners for real-time validation\n    var inputs = document.querySelectorAll('.ifi-input');\n    for (var i = 0; i <inputs.length; i++) { inputs[i].addEventListener('input', function() { if (this.value !-- wpml:html_comment PCEtLSB3cG1sOndwX2J1ZyA8MCAtLT4= -->) { this.value = 0; } }); } }); <\/script>\n<style type=\"text\/css\">\n.simulator-wrapper {\n    font-family: Poppins, sans-serif;\n    max-width: 800px;\n    margin: 20px auto;\n    padding: 0;\n}\n\n.ifi-calculator {\n    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n    border-radius: 16px;\n    padding: 30px;\n    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);\n}\n\n.ifi-title {\n    color: #ffffff;\n    font-size: 28px;\n    font-weight: 700;\n    margin: 0 0 8px 0;\n    text-align: center;\n}\n\n.ifi-subtitle {\n    color: rgba(255, 255, 255, 0.9);\n    font-size: 16px;\n    margin: 0 0 25px 0;\n    text-align: center;\n}\n\n.ifi-input-section {\n    background: #ffffff;\n    border-radius: 12px;\n    padding: 25px;\n    margin-bottom: 20px;\n}\n\n.ifi-input-group {\n    margin-bottom: 20px;\n}\n\n.ifi-label {\n    display: block;\n    color: #2d3748;\n    font-weight: 600;\n    font-size: 14px;\n    margin-bottom: 8px;\n}\n\n.ifi-tooltip {\n    display: block;\n    color: #718096;\n    font-size: 12px;\n    font-weight: 400;\n    margin-top: 4px;\n}\n\n.ifi-input {\n    width: 100%;\n    padding: 12px 16px;\n    border: 2px solid #e2e8f0;\n    border-radius: 8px;\n    font-size: 16px;\n    transition: all 0.3s;\n    box-sizing: border-box;\n}\n\n.ifi-input:focus {\n    outline: none;\n    border-color: #667eea;\n    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);\n}\n\n.ifi-calculate-btn {\n    width: 100%;\n    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n    color: #ffffff;\n    border: none;\n    border-radius: 8px;\n    padding: 14px 24px;\n    font-size: 16px;\n    font-weight: 600;\n    cursor: pointer;\n    transition: transform 0.2s, box-shadow 0.2s;\n    margin-top: 10px;\n}\n\n.ifi-calculate-btn:hover {\n    transform: translateY(-2px);\n    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);\n}\n\n.ifi-calculate-btn:active {\n    transform: translateY(0);\n}\n\n.ifi-results {\n    background: #ffffff;\n    border-radius: 12px;\n    padding: 25px;\n    animation: slideIn 0.4s ease-out;\n}\n\n@keyframes slideIn {\n    from {\n        opacity: 0;\n        transform: translateY(-10px);\n    }\n    to {\n        opacity: 1;\n        transform: translateY(0);\n    }\n}\n\n.ifi-result-header h4 {\n    color: #2d3748;\n    font-size: 22px;\n    margin: 0 0 20px 0;\n    text-align: center;\n}\n\n.ifi-summary-cards {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n    gap: 15px;\n    margin-bottom: 25px;\n}\n\n.ifi-card {\n    background: #f7fafc;\n    border-radius: 10px;\n    padding: 18px;\n    text-align: center;\n    border: 2px solid #e2e8f0;\n    transition: all 0.3s;\n}\n\n.ifi-card:hover {\n    border-color: #cbd5e0;\n    transform: translateY(-2px);\n}\n\n.ifi-card-tax {\n    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);\n    border-color: #667eea;\n}\n\n.ifi-card-label {\n    color: #718096;\n    font-size: 13px;\n    font-weight: 600;\n    text-transform: uppercase;\n    letter-spacing: 0.5px;\n    margin-bottom: 8px;\n}\n\n.ifi-card-value {\n    color: #2d3748;\n    font-size: 24px;\n    font-weight: 700;\n}\n\n.ifi-card-value.highlight {\n    color: #667eea;\n}\n\n.ifi-breakdown {\n    margin-top: 20px;\n}\n\n.ifi-breakdown-title {\n    color: #2d3748;\n    font-size: 16px;\n    font-weight: 600;\n    margin: 0 0 15px 0;\n}\n\n.ifi-bracket-list {\n    display: flex;\n    flex-direction: column;\n    gap: 10px;\n}\n\n.ifi-bracket-item {\n    background: #f7fafc;\n    border-radius: 8px;\n    padding: 12px 16px;\n    border-left: 4px solid #e2e8f0;\n    opacity: 0.5;\n    transition: all 0.3s;\n}\n\n.ifi-bracket-item.active {\n    opacity: 1;\n    border-left-color: #667eea;\n    background: linear-gradient(90deg, #667eea10 0%, transparent 100%);\n}\n\n.ifi-bracket-info {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    margin-bottom: 4px;\n}\n\n.ifi-bracket-label {\n    color: #2d3748;\n    font-size: 14px;\n    font-weight: 500;\n}\n\n.ifi-bracket-rate {\n    color: #667eea;\n    font-size: 14px;\n    font-weight: 700;\n}\n\n.ifi-bracket-amount {\n    color: #718096;\n    font-size: 13px;\n    margin-top: 4px;\n}\n\n.ifi-info-box {\n    background: #ebf4ff;\n    border: 2px solid #90cdf4;\n    border-radius: 8px;\n    padding: 15px;\n    margin-top: 20px;\n    color: #2c5282;\n    font-size: 14px;\n    line-height: 1.6;\n}\n\n.ifi-info-box.ifi-success {\n    background: #f0fff4;\n    border-color: #9ae6b4;\n    color: #22543d;\n}\n\n@media (max-width: 600px) {\n    .ifi-calculator {\n        padding: 20px;\n    }\n    \n    .ifi-title {\n        font-size: 24px;\n    }\n    \n    .ifi-summary-cards {\n        grid-template-columns: 1fr;\n    }\n    \n    .ifi-card-value {\n        font-size: 20px;\n    }\n}\n<\/style>\n<div class=\"zloop-color-1\" style=\"background-color: #fffbeb; border-left: 4px solid #fbbf24; padding: 1rem; margin: 1rem 0;\">\n<div style=\"display: flex; align-items: center;\">\n<svg fill=\"none\" height=\"20\" stroke=\"#fbbf24\" stroke-width=\"2\" viewbox=\"0 0 24 24\" width=\"20\">\n<circle cx=\"12\" cy=\"12\" r=\"10\"\/>\n<line x1=\"12\" x2=\"12\" y1=\"16\" y2=\"12\"\/>\n<line x1=\"12\" x2=\"12.01\" y1=\"8\" y2=\"8\"\/>\n<\/svg>\n<p style=\"margin-left: 0.75rem; color: #b45309;\">\n  The results provided are given for information only and do not engage our responsibility in any way.\n        <\/p>\n<\/div>\n<\/div>\n\n        <\/div>\n        <div id=\"Zloop-content\">\n        <p>The Imp\u00f4t sur la Fortune Immobili\u00e8re (IFI &#8211; tax on real estate wealth) applies to taxpayers whose net taxable real estate assets exceed the <a href=\"https:\/\/www.altertax-avocats.com\/seuil-dimposition\/\">tax threshold<\/a> of 1.3 million euros on January 1 of the tax year. The <strong>IFI calculation<\/strong> requires an accurate valuation of your real estate assets and the correct application of deduction rules, particularly concerning <a href=\"https:\/\/www.altertax-avocats.com\/les-dettes-deductibles-au-titre-de-l-ifi\/\">deductible debts<\/a>. This approach directly determines the amount of your tax liability, and may be subject to an <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/ifi\/controle-fiscal-ifi\/\">IFI tax audit<\/a> by the tax authorities. Understanding the calculation mechanisms will enable you to optimize your tax return in full compliance with the law.   <\/p><h2>What is the IFI calculation?<\/h2><p>The <strong>IFI calculation<\/strong> is based on three distinct steps: valuing your real estate assets at their market value on January 1, deducting the debts allowed in connection with these assets, and then applying the progressive scale to your net taxable assets. This methodology is applied as soon as your real estate assets exceed the threshold of 1.3 million euros, taking into account all assets held directly or indirectly, in France or abroad. <\/p><h2>Valuation of taxable real estate assets<\/h2><p>Valuation is the first step in the <strong>IFI calculation<\/strong>. You need to estimate the real market value of each property on January 1, i.e. the price that could be obtained from a sale under normal market conditions. This estimate applies to your main residence, second homes, land, rental properties and shares in property companies.  <\/p><h3>Recognized valuation methods<\/h3><p>Valuation is carried out by comparison with similar properties, by capitalization of rental income, or by professional appraisal to justify your estimate in the event of an inspection. For your principal residence, you benefit from an automatic 30% allowance on its market value, applicable only to your actual and usual principal residence. <\/p><h3>Indirectly held real estate<\/h3><p>Shares in non-trading property companies (SCI), shares in companies with a preponderance of real estate assets and shares in real estate investment trusts (OPCI) are included in the IFI calculation in proportion to your percentage holding in the value of the real estate assets held by these structures.<\/p><h2>Deductions applicable to the IFI calculation<\/h2><p>After valuing your assets, you can deduct certain debts to obtain your net taxable assets. These deductions directly reduce your tax base, and therefore the amount of your <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/ifi\/declaration-ifi\/\">IFI tax return<\/a>. The tax authorities impose strict limits on the debts that can be deducted.  <\/p><h3>Deductible debts related to taxable assets<\/h3><p>You can deduct loans taken out for the acquisition, construction, repair or improvement of taxable property. The basis for deduction is the outstanding principal on January 1. Maintenance and repair expenses paid but not yet paid on January 1 are also deductible.  <\/p><p>Taxes due on property, such as property tax, are deductible if they remain unpaid at January 1. Debts incurred for the acquisition of shares in SCIs or property companies can be deducted in proportion to the value of the taxable property assets. <\/p><h3>Limits on deductible debts<\/h3><p>Since 2018, a capping mechanism limits the deduction of debts for certain properties. For properties not rented out or made available free of charge, debts are deductible up to 50% of their value. On the other hand, property that is rented out or constitutes your principal residence escapes this capping and allows you to deduct the corresponding debts in full.  <\/p><h2>Application of the progressive IFI scale<\/h2><p>Once your net taxable assets have been determined, you apply the progressive tax scale in brackets. There are six brackets, with rates ranging from 0% to 1.5%. The calculation is carried out slice by slice, as for income tax, which means that only the fraction of wealth in each slice is taxed at the corresponding rate.  <\/p><h3>Tax brackets and rates 2024<\/h3><p>The progressive scale of the IFI comprises six tax brackets:<\/p><ul><li>Up to \u20ac800,000: 0%.<\/li><li>From \u20ac800,000 to \u20ac1,300,000: 0.5%.<\/li><li>From \u20ac1,300,000 to \u20ac2,570,000: 0.7%.<\/li><li>From \u20ac2,570,000 to \u20ac5,000,000: 1%.<\/li><li>From \u20ac5,000,000 to \u20ac10,000,000: 1.25%.<\/li><li>Above \u20ac10,000,000: 1.5%.<\/li><\/ul><p>For net taxable assets of \u20ac2 million, the IFI is \u20ac7,400.<\/p><h3>Discount for assets close to the threshold<\/h3><p>If your net taxable assets are between 1.3 and 1.4 million euros, you benefit from a discount. This reduction avoids a sudden threshold effect when crossing the tax threshold. The discount is calculated as follows: 17,500 &#8211; [1.25% \u00d7 (net taxable assets &#8211; 1,300,000)].  <\/p><p>For assets worth \u20ac1.35 million, the calculation is as follows: the theoretical IFI on the taxable portion of \u20ac50,000 (between \u20ac1.3 and \u20ac1.35 million) is \u20ac250 (\u20ac50,000 \u00d7 0.5%). The applicable discount is 17,500 &#8211; (1.25% \u00d7 50,000) = 17,500 &#8211; 625 = 16,875 euros. As this discount is higher than the calculated tax, no IFI is due. The discount decreases progressively until it is cancelled at 1.4 million euros of net taxable assets.   <\/p><h2>Special cases and complex situations<\/h2><p>Certain situations require specific IFI calculations. In the case of dismembered property, the usufructuary declares full ownership, while the bare owner declares nothing, in accordance with<a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/ifi\/article-964-cgi\/\">article 964 of the CGI<\/a>. Real estate used for your main professional activity is totally exempt, subject to strict conditions, as are certain shares in operating companies, via the <a href=\"https:\/\/www.altertax-avocats.com\/pacte-dutreil-et-entreprises-familiales-le-duo-gagnant\/\">Dutreil pact<\/a>. Non-resident taxpayers continue to be taxed on their French property according to the same calculation rules.   <\/p><h3>Business assets and exemptions<\/h3><p>Real estate used for your main professional activity is exempt from the IFI. This exemption applies if you actually carry on your profession in these premises and derive most of your income from them. The conditions for exemption are strict, and often require the assistance of a specialized tax advisor.  <\/p><h3>Non-resident taxpayers<\/h3><p>Taxpayers residing abroad remain liable to the IFI on their real estate assets located in France, according to the same calculation rules.<\/p><h2>Legal optimization of IFI calculation<\/h2><p>Beyond the strict calculation of the IFI, several asset optimization strategies can legally reduce your tax base. These schemes (gifts with usufruct reserve, conversion of assets into business assets, investments in certain exempt assets) require an in-depth analysis of your situation and the support of a specialized tax advisor. <\/p><h2>Common calculation errors to avoid<\/h2><p>The most common errors in the <strong>IFI calculation<\/strong> concern the under-valuation of real estate assets, the omission of assets held indirectly via companies (SCI, companies with a preponderance of real estate assets), and the deduction of debts that are not allowed or insufficiently justified. Each debt deducted must be supported by documentary evidence: loan contract, payment schedule and bank statements. <\/p><h2>Professional assistance for your IFI calculation<\/h2><p>The complexity of the <strong>IFI calculation<\/strong> often justifies the use of a tax lawyer to help you evaluate your assets, identify applicable deductions and optimize your tax return. This expertise prevents costly errors and makes your situation more secure when dealing with the tax authorities. <\/p>\n        <\/div>\n        <div id=\"FAQ-Zloop\">\n        <div>\n<h2>Frequently asked questions<\/h2>\n<p>This section answers the main questions about calculating the IFI and valuing real estate assets, to help you understand your tax obligations and optimize your <a href=\"https:\/\/www.altertax-avocats.com\/en\/tax-return\/\">tax return<\/a>.<\/p>\n<h3>What is the IFI and how does the complete calculation method work?<\/h3>\n<p>The Imp\u00f4t sur la Fortune Immobili\u00e8re (IFI) is an annual tax applicable to net real estate assets in excess of 1.3 million euros. The complete calculation method consists of valuing all your real estate assets (principal residence, rental properties, shares in SCIs, etc.) on January 1 of the tax year, then deducting the deductible debts associated with these assets. The result is the tax base, to which a progressive scale of tax brackets is applied, ranging from 0.5% to 1.5%.  <\/p>\n<h3>How do I calculate the IFI?<\/h3>\n<p>There are four main steps in calculating the IFI: first, identify all your taxable properties and their market value on January 1. Secondly, identify and value deductible debts linked to these properties (mortgages, works, etc.). Thirdly, calculate your net taxable assets by subtracting debts from assets. Finally, apply the progressive scale of the IFI to your net assets to determine the amount of tax due. A deduction of 30% is automatically applied to the principal residence.    <\/p>\n<h3>What are the rules for valuing real estate assets for the IFI?<\/h3>\n<p>Real estate assets must be valued for the IFI at market value, i.e. the price at which the property could be sold under normal market conditions. For rented properties, you can refer to comparable transactions or call in an expert. Principal residences benefit from a 30% allowance. SCI shares are valued in proportion to the value of the real estate held by the company. The tax authorities may contest a manifestly undervalued valuation.    <\/p>\n<h3>Which assets are taken into account when calculating the IFI?<\/h3>\n<p>All property and real estate rights held directly or indirectly are taken into account: primary and secondary residences, rental properties, building land, properties under construction, shares in SCI or SCPI real estate investment trusts. Real estate held through companies is also included, in proportion to your shareholding. Excluded, however, are properties used for the main business activity (under certain conditions), woods and forests (with partial exemption), and historic monuments open to the public.  <\/p>\n<h3>What deductions can be applied when calculating the IFI?<\/h3>\n<p>Several deductions are possible to reduce the IFI tax base. Deductible debts include: loans taken out for the acquisition, construction or work on taxable assets, taxes due on the assets (property tax), expenditure on improvement work, and acquisition expenses paid but not yet settled on January 1. Note that only debts existing on January 1 and directly linked to taxable assets are deductible. A specific ceiling applies to debts payable at maturity.   <\/p>\n<h3>How do I contest an IFI tax reassessment?<\/h3>\n<p>In the event of a tax reassessment on your IFI, you have several options. First of all, respond to the rectification proposal within the allotted time, providing supporting documents and arguments. If the disagreement persists, you can refer the matter to the departmental tax commission or to the departmental contact person. If all else fails, you can appeal to the administrative court. The assistance of a <a href=\"https:\/\/www.altertax-avocats.com\/en\/tax-lawyer-paris-16\/\">specialized tax lawyer<\/a> is highly recommended to maximize your chances of success and effectively defend your interests against the tax authorities.    <\/p>\n<\/div>\n        <\/div>\n        <div class=\"arianezloopglobale\">\n        <h2 class=\"articlesConnexesZloop\">Related articles<\/h2>\n        <div id=\"arianezloop\">\n            <p><a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/\"><span class=\"parentarianezloop\">Tax Litigation<\/span><\/a><\/p><p><a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/ifi\/\"><span class=\"parentarianezloop\">Ifi<\/span><\/a><\/p>\n            <div id=\"ariane-enfant\">\n            <p><a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/ifi\/calcul-ifi\/\"><span class=\"parentarianezloop\">Ifi calculation<\/span><\/a><\/p>\n            <ul>\n            \n            <\/ul>\n            <\/div>\n            <\/div>\n        <\/div>\n        \n","protected":false},"excerpt":{"rendered":"<p>IFI calculation: Complete method and valuation rules \ud83c\udfe0 IFI Calculation Simulator Calculate your real estate wealth tax Principal residence (\u20ac) \ud83d\udca1 Automatic 30% allowance Other real estate (\u20ac) Second homes, land, rentals&#8230; Deductible debts (\u20ac) Loans, unpaid property taxes&#8230; Calculate my IFI \ud83d\udcca Calculation results Gross assets 0 \u20ac Net taxable assets 0 \u20ac IFI [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[384],"tags":[],"class_list":["post-8380","post","type-post","status-publish","format-standard","hentry","category-litigation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Calculating ifi 2026: guide + scale [to avoid errors]. - Altertax Avocats<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Calculating ifi 2026: guide + scale [to avoid errors]. - Altertax Avocats\" \/>\n<meta property=\"og:description\" content=\"IFI calculation: Complete method and valuation rules \ud83c\udfe0 IFI Calculation Simulator Calculate your real estate wealth tax Principal residence (\u20ac) \ud83d\udca1 Automatic 30% allowance Other real estate (\u20ac) Second homes, land, rentals&#8230; Deductible debts (\u20ac) Loans, unpaid property taxes&#8230; Calculate my IFI \ud83d\udcca Calculation results Gross assets 0 \u20ac Net taxable assets 0 \u20ac IFI [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/\" \/>\n<meta property=\"og:site_name\" content=\"Altertax Avocats\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-01T14:38:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/03\/altertax-avocats-logo-black-full.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1009\" \/>\n\t<meta property=\"og:image:height\" content=\"286\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Equipe de AlterTax Avocats\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Equipe de AlterTax Avocats\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\\\/\"},\"author\":{\"name\":\"Equipe de AlterTax Avocats\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/person\\\/bbfb0f93f3e05c30485cf20fa2dff731\"},\"headline\":\"Calculating ifi 2026: guide + scale [to avoid errors].\",\"datePublished\":\"2026-01-01T14:38:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\\\/\"},\"wordCount\":1693,\"publisher\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\"},\"articleSection\":[\"Litigation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\\\/\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\\\/\",\"name\":\"Calculating ifi %%currentYear%%: guide + scale [to avoid errors]. - Altertax Avocats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#website\"},\"datePublished\":\"2026-01-01T14:38:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Calculating ifi 2026: guide + scale [to avoid errors].\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\",\"name\":\"Altertax Avocats\",\"description\":\"Avocats Fiscalistes Paris, Droit Fiscal\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\",\"name\":\"ALTERTAX\",\"alternateName\":\"AlterTax Avocats\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-emblem-altertax-avocats.png\",\"contentUrl\":\"https:\\\/\\\/www.altertax-avocats.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-emblem-altertax-avocats.png\",\"width\":912,\"height\":672,\"caption\":\"ALTERTAX\"},\"image\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/altertax-avocats\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/person\\\/bbfb0f93f3e05c30485cf20fa2dff731\",\"name\":\"Equipe de AlterTax Avocats\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g\",\"caption\":\"Equipe de AlterTax Avocats\"},\"description\":\"Avec 25 ans d'exp\u00e9rience en droit fiscal, notamment dans de grands cabinets fran\u00e7ais et internationaux, je fournis des conseils sur-mesure en fiscalit\u00e9. Ma passion et mon implication me permettent d'accompagner efficacement les entreprises fran\u00e7aises dans leur expansion internationale, ainsi que les groupes \u00e9trangers et multinationales dans leurs op\u00e9rations transfrontali\u00e8res et de r\u00e9organisation. Je conseille \u00e9galement les personnes physiques pour la gestion de leur patrimoine et leur planification successorale. Mon expertise s'\u00e9tend au contentieux fiscal devant les juridictions administratives et civiles.\",\"sameAs\":[\"https:\\\/\\\/www.altertax-avocats.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/cyril-maucour\\\/\"],\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/notre-equipe\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Calculating ifi 2026: guide + scale [to avoid errors]. - Altertax Avocats","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/","og_locale":"en_US","og_type":"article","og_title":"Calculating ifi 2026: guide + scale [to avoid errors]. - Altertax Avocats","og_description":"IFI calculation: Complete method and valuation rules \ud83c\udfe0 IFI Calculation Simulator Calculate your real estate wealth tax Principal residence (\u20ac) \ud83d\udca1 Automatic 30% allowance Other real estate (\u20ac) Second homes, land, rentals&#8230; Deductible debts (\u20ac) Loans, unpaid property taxes&#8230; Calculate my IFI \ud83d\udcca Calculation results Gross assets 0 \u20ac Net taxable assets 0 \u20ac IFI [&hellip;]","og_url":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/","og_site_name":"Altertax Avocats","article_published_time":"2026-01-01T14:38:22+00:00","og_image":[{"width":1009,"height":286,"url":"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/03\/altertax-avocats-logo-black-full.png","type":"image\/png"}],"author":"Equipe de AlterTax Avocats","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Equipe de AlterTax Avocats","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/#article","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/"},"author":{"name":"Equipe de AlterTax Avocats","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/person\/bbfb0f93f3e05c30485cf20fa2dff731"},"headline":"Calculating ifi 2026: guide + scale [to avoid errors].","datePublished":"2026-01-01T14:38:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/"},"wordCount":1693,"publisher":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#organization"},"articleSection":["Litigation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/","url":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/","name":"Calculating ifi %%currentYear%%: guide + scale [to avoid errors]. - Altertax Avocats","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#website"},"datePublished":"2026-01-01T14:38:22+00:00","breadcrumb":{"@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-ifi-currentyear-guide-scale-to-avoid-errors\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.altertax-avocats.com\/en\/"},{"@type":"ListItem","position":2,"name":"Calculating ifi 2026: guide + scale [to avoid errors]."}]},{"@type":"WebSite","@id":"https:\/\/www.altertax-avocats.com\/en\/#website","url":"https:\/\/www.altertax-avocats.com\/en\/","name":"Altertax Avocats","description":"Avocats Fiscalistes Paris, Droit Fiscal","publisher":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.altertax-avocats.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.altertax-avocats.com\/en\/#organization","name":"ALTERTAX","alternateName":"AlterTax Avocats","url":"https:\/\/www.altertax-avocats.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/01\/logo-emblem-altertax-avocats.png","contentUrl":"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/01\/logo-emblem-altertax-avocats.png","width":912,"height":672,"caption":"ALTERTAX"},"image":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/altertax-avocats\/"]},{"@type":"Person","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/person\/bbfb0f93f3e05c30485cf20fa2dff731","name":"Equipe de AlterTax Avocats","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g","caption":"Equipe de AlterTax Avocats"},"description":"Avec 25 ans d'exp\u00e9rience en droit fiscal, notamment dans de grands cabinets fran\u00e7ais et internationaux, je fournis des conseils sur-mesure en fiscalit\u00e9. Ma passion et mon implication me permettent d'accompagner efficacement les entreprises fran\u00e7aises dans leur expansion internationale, ainsi que les groupes \u00e9trangers et multinationales dans leurs op\u00e9rations transfrontali\u00e8res et de r\u00e9organisation. Je conseille \u00e9galement les personnes physiques pour la gestion de leur patrimoine et leur planification successorale. Mon expertise s'\u00e9tend au contentieux fiscal devant les juridictions administratives et civiles.","sameAs":["https:\/\/www.altertax-avocats.com","https:\/\/www.linkedin.com\/in\/cyril-maucour\/"],"url":"https:\/\/www.altertax-avocats.com\/notre-equipe\/"}]}},"_links":{"self":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts\/8380","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/comments?post=8380"}],"version-history":[{"count":0,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts\/8380\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/media?parent=8380"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/categories?post=8380"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/tags?post=8380"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}