{"id":8,"date":"2026-05-27T17:25:52","date_gmt":"2026-05-27T17:25:52","guid":{"rendered":"https:\/\/percentagedecreasecalculator.com\/?page_id=8"},"modified":"2026-05-27T17:25:53","modified_gmt":"2026-05-27T17:25:53","slug":"percentage-decrease-calculator","status":"publish","type":"page","link":"https:\/\/percentagedecreasecalculator.com\/","title":{"rendered":"Percentage Reduction Calculator"},"content":{"rendered":"\n<section class=\"percentage-decrease-tool\" aria-labelledby=\"calculatorHeading\">\n  <p>Calculate percentage decrease between two values with step-by-step solution.<\/p>\n  <div class=\"calc-box\">\n    <label for=\"originalValue\">Starting Value:<\/label>\n    <input type=\"number\" id=\"originalValue\" placeholder=\"Enter starting value\" aria-label=\"Enter starting value\" \/>\n    <label for=\"newValue\">Final Value:<\/label>\n    <input type=\"number\" id=\"newValue\" placeholder=\"Enter final value\" aria-label=\"Enter final value\" \/>\n\n    <div class=\"button-group\">\n      <button onclick=\"calculateDecrease()\" aria-label=\"Calculate percentage decrease\">Calculate<\/button>\n      <button onclick=\"clearFields()\" class=\"clear-btn\" aria-label=\"Clear all values and reset calculator\">Clear<\/button>\n    <\/div>\n\n    <div id=\"result\" class=\"result-box\" role=\"status\" aria-live=\"polite\" tabindex=\"0\"><\/div>\n    <div id=\"steps\" class=\"solution-box\" role=\"status\" aria-live=\"polite\" tabindex=\"0\"><\/div>\n  <\/div>\n<\/section>\n\n<style>\n.percentage-decrease-tool {\n  max-width: 500px;\n  margin: auto;\n  background: #d3d3d3;\n  padding: 20px;\n  border-radius: 12px;\n  border: 1px solid #ddd;\n  font-family: Arial, sans-serif;\n  text-align: center;\n}\n.percentage-decrease-tool h2 {\n  margin-bottom: 15px;\n  color: #333;\n}\n.calc-box {\n  display: flex;\n  flex-direction: column;\n  text-align: left;\n}\n.calc-box label {\n  font-weight: bold;\n  margin: 8px 0 4px;\n}\n.calc-box input {\n  padding: 10px;\n  border-radius: 6px;\n  border: 1px solid #bbb;\n}\n.button-group {\n  display: flex;\n  gap: 10px;\n  margin-top: 15px;\n}\n.button-group button {\n  flex: 1;\n  padding: 12px;\n  font-size: 16px;\n  border: none;\n  cursor: pointer;\n  border-radius: 6px;\n}\n.button-group button:first-child {\n  background: #0e4513;\n  color: #fff;\n}\n.clear-btn {\n  background: #2d2d2d;\n  color: #fff;\n}\n.button-group button:first-child:hover {\n  background: #0c3b10;\n}\n.clear-btn:hover {\n  background: #1e1e1e;\n}\n.result-box,\n.solution-box {\n  margin-top: 15px;\n  padding: 12px;\n  background: #fff;\n  border-radius: 6px;\n  border: 1px solid #ddd;\n  text-align: center;\n}\n.math-step {\n  font-family: \"Cambria Math\", serif;\n  text-align: center;\n  margin: 6px 0;\n}\n<\/style>\n\n<script>\nfunction calculateDecrease() {\n  const start = parseFloat(document.getElementById(\"originalValue\").value);\n  const end = parseFloat(document.getElementById(\"newValue\").value);\n  const resultBox = document.getElementById(\"result\");\n  const stepsBox = document.getElementById(\"steps\");\n\n  if (!start || !end || start <= 0) {\n    resultBox.innerHTML = \"Please enter valid values.\";\n    stepsBox.innerHTML = \"\";\n    resultBox.focus();\n    return;\n  }\n\n  const change = end - start;\n  const percent = (change \/ start) * 100;\n  const percentAbs = Math.abs(percent).toFixed(2);\n  const percentDisplay = percent.toFixed(2);\n\n  if (percent < 0) {\n    resultBox.innerHTML = `Answer = ${percentAbs}% Decrease`;\n  } else {\n    resultBox.innerHTML = `\n      <strong>Answer:<\/strong><br><br>\n      = ${percentDisplay}% Decrease<br><br>\n      or<br><br>\n      = ${percentAbs}% Increase\n    `;\n  }\n\n  const signCorrectedChange = change.toFixed(2);\n  const percentDecimal = (change \/ start).toFixed(4);\n  const finalLine =\n    percent < 0\n      ? `= ${percentAbs}% decrease`\n      : `= ${percentAbs}% increase`;\n\n  stepsBox.innerHTML = `\n    <strong>Solution:<\/strong><br><br>\n    <strong>Calculate percentage change<\/strong><br><br>\n    from Starting Value = ${start}<br>\n    to Final Value = ${end}<br><br>\n\n    <div class=\"math-step\">(Final - Start) \/ |Start| \u00d7 100<\/div>\n    <div class=\"math-step\">(${end} - ${start}) \/ |${start}| \u00d7 100<\/div>\n    <div class=\"math-step\">${signCorrectedChange} \/ ${Math.abs(start)} \u00d7 100<\/div>\n    <div class=\"math-step\">${percentDecimal} \u00d7 100<\/div>\n    <div class=\"math-step\">= ${percentDisplay}% change<\/div>\n    <div class=\"math-step\">${finalLine}<\/div>\n  `;\n\n  resultBox.focus();\n}\n\nfunction clearFields() {\n  document.getElementById(\"originalValue\").value = \"\";\n  document.getElementById(\"newValue\").value = \"\";\n  document.getElementById(\"result\").innerHTML = \"\";\n  document.getElementById(\"steps\").innerHTML = \"\";\n  document.getElementById(\"originalValue\").focus();\n}\n<\/script>\n\n\n\n<style>\n.percentage-tools-wrapper{\n    max-width:1400px;\n    margin:40px auto;\n    margin-top:15px;\nmargin-bottom:-40px;\n    padding:20px;\n    font-family:Arial,sans-serif;\n}\n\n.percentage-main-title{\n    text-align:center;\n    font-size:26px;\n    font-weight:600;\n    color:#111827;\n    margin-bottom:12px;\n}\n\n.percentage-subtitle{\n    text-align:center;\n    font-size:17px;\n    color:#6b7280;\n    margin-bottom:50px;\n    line-height:1.7;\n}\n\n.percentage-category{\n    margin-bottom:30px;\n}\n\n.percentage-category-title{\n    font-size:22px;\n    font-weight:700;\n    margin-bottom:25px;\n    color:#111827;\n    padding-left:15px;\n    border-left:5px solid #2563eb;\n}\n\n.percentage-grid{\n    display:grid;\n    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));\n    gap:18px;\n}\n\n.percentage-card{\n    background:#f8fafc;\n    border:2px solid #2563eb;\n    border-radius:22px;\n    transition:0.25s ease;\n}\n\n.percentage-card:hover{\n    background:#eff6ff;\n}\n\n.percentage-card a{\n    display:block;\n    padding:22px 24px;\n    text-decoration:none;\n    color:#2563eb;\n    font-size:16px;\n    font-weight:700;\n    line-height:1.4;\n}\n\n@media(max-width:768px){\n\n    .percentage-card a{\n        padding:18px 20px;\n        font-size:15px;\n    }\n\n}\n<\/style>\n\n<div class=\"percentage-tools-wrapper\">\n\n    <h2 class=\"percentage-main-title\">\n        Popular Percentage Calculators Collection\n    <\/h2>\n\n    <p class=\"percentage-subtitle\">\n        Browse all percentage calculators organized into logical categories for a better user experience.\n    <\/p>\n\n    <!-- GENERAL -->\n    <div class=\"percentage-category\">\n\n        <h3 class=\"percentage-category-title\">\n            General Percentage Calculators\n        <\/h3>\n\n        <div class=\"percentage-grid\">\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/average-percentage-calculator\/\">\n                    Average Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-point-calculator\/\">\n                    Percentage Point Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/time-percentage-calculator\/\">\n                    Time Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-standard-deviation-calculator\/\">\n                    Percentage Standard Deviation Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percent-to-goal\/\">\n                    Percent to Goal Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/goal-to-percentage\/\">\n                    Goal to Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percent-error-calculator\/\">\n                    Percent Error Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/cumulative-percentage-calculator\/\">\n                    Cumulative Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/reverse-percentage-calculator\/\">\n                    Reverse Percentage Calculator\n                <\/a>\n            <\/div>\n\n        <\/div>\n\n    <\/div>\n\n    <!-- CONVERTERS -->\n    <div class=\"percentage-category\">\n\n        <h3 class=\"percentage-category-title\">\n            Percentage Related Converters\n        <\/h3>\n\n        <div class=\"percentage-grid\">\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percent-to-decimal\/\">\n                    Percent to Decimal Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/decimal-to-percent\/\">\n                    Decimal to Percent Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percent-to-ratio\/\">\n                    Percent to Ratio Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/ratio-to-percentage\/\">\n                    Ratio to Percent Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/fraction-to-percent\/\">\n                    Fraction to Percent Converter\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percent-to-fraction\/\">\n                    Percent to Fraction Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-to-frequency\/\">\n                    Percentage to Frequency Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/frequency-to-percentage\/\">\n                    Frequency to Percentage Converter\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/grams-to-percentage\/\">\n                    Grams To Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percent-to-grams\/\">\n                    Percent to Grams Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percent-to-ppm\/\">\n                    Percent to PPM Converter\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/ppm-to-percent\/\">\n                    PPM to Percent Converter\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/bps-to-percentage\/\">\n                    BPS to Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-to-bps\/\">\n                    Percentage to BPS Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/molarity-to-percentage\/\">\n                    Molarity to Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-to-molarity\/\">\n                    Percentage to Molarity Calculator\n                <\/a>\n            <\/div>\n\n        <\/div>\n\n    <\/div>\n\n    <!-- EDUCATION -->\n    <div class=\"percentage-category\">\n\n        <h3 class=\"percentage-category-title\">\n            Education Related Percentage Calculators\n        <\/h3>\n\n        <div class=\"percentage-grid\">\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-to-gpa\/\">\n                    Percentage to GPA Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/gpa-to-percentage\/\">\n                    GPA to Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-to-cgpa\/\">\n                    Percentage to CGPA Converter\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/cgpa-to-percentage\/\">\n                    CGPA to Percentage Converter\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/class-rank-percentage-calculator\/\">\n                    Class Rank Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/attendance-percentage-calculator\/\">\n                    Attendance Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/reading-accuracy-rate-calculator\/\">\n                    Reading Accuracy Rate Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/book-percentage-calculator\/\">\n                    Book Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/audiobook-percentage-calculator\/\">\n                    Audiobook Percentage Calculator\n                <\/a>\n            <\/div>\n\n        <\/div>\n\n    <\/div>\n\n    <!-- HEALTH -->\n    <div class=\"percentage-category\">\n\n        <h3 class=\"percentage-category-title\">\n            Health &#038; Fitness Percentage Calculators\n        <\/h3>\n\n        <div class=\"percentage-grid\">\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/weight-loss-percentage-calculator\/\">\n                    Weight Loss Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/macro-percentage-calculator\/\">\n                    Macro Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/miscarriage-percentage-calculator\/\">\n                    Miscarriage Percentage Calculator\n                <\/a>\n            <\/div>\n\n        <\/div>\n\n    <\/div>\n\n    <!-- BUSINESS -->\n    <div class=\"percentage-category\">\n\n        <h3 class=\"percentage-category-title\">\n            Business &#038; Finance Percentage Calculators\n        <\/h3>\n\n        <div class=\"percentage-grid\">\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/mom-calculator\/\">\n                    Month Over Month Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/yoy-percentage-calculator\/\">\n                    YOY Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/share-dilution-calculator\/\">\n                    Share Dilution Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-rent-calculator\/\">\n                    Percentage Rent Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/occupancy-rate-calculator\/\">\n                    Occupancy Rate Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/turnover-percentage-calculator\/\">\n                    Turnover Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/labor-cost-percentage-calculator\/\">\n                    Labor Cost Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/food-cost-percentage-calculator\/\">\n                    Food Cost Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/markup-percentage-calculator\/\">\n                    Markup Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-of-savings-calculator\/\">\n                    Percentage of Savings Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/mape-calculator\/\">\n                    Mean Absolute Percentage Error Calculator\n                <\/a>\n            <\/div>\n\n        <\/div>\n\n    <\/div>\n\n    <!-- SPORTS -->\n    <div class=\"percentage-category\">\n\n        <h3 class=\"percentage-category-title\">\n            Sports Percentage Calculators\n        <\/h3>\n\n        <div class=\"percentage-grid\">\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/vote-percentage-calculator\/\">\n                    Vote Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/winning-percentage-calculator\/\">\n                    Winning Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/strikeout-percentage-calculator\/\">\n                    Strikeout Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/shooting-percentage-calculator\/\">\n                    Shooting Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/on-base-percentage-calculator\/\">\n                    On Base Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/slugging-percentage-calculator\/\">\n                    Slugging Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/free-throw-percentage-calculator\/\">\n                    Free Throw Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/goalie-save-percentage-calculator\/\">\n                    Goalie Save Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/strike-percentage-calculator\/\">\n                    Strike Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/volleyball-hitting-percentage-calculator\/\">\n                    Volleyball Hitting Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/effective-field-goal-percentage-calculator\/\">\n                    Effective Field Goal Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/field-goal-percentage-calculator\/\">\n                    Field Goal Percentage Calculator\n                <\/a>\n            <\/div>\n\n        <\/div>\n\n    <\/div>\n\n    <!-- SPECIALIZED -->\n    <div class=\"percentage-category\">\n\n        <h3 class=\"percentage-category-title\">\n            Specialized Percentage Calculators\n        <\/h3>\n\n        <div class=\"percentage-grid\">\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/bakers-percentage-calculator\/\">\n                    Bakers Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/slope-percentage-calculator\/\">\n                    Slope Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/ethnicity-percentage-calculator\/\">\n                    Ethnicity Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/survey-percentage-calculator\/\">\n                    Survey Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/pie-chart-percentage-calculator\/\">\n                    Pie Chart Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/window-tint-percentage-calculator\/\">\n                    Window Tint Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-abundance-calculator\/\">\n                    Percentage Abundance Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/scrap-percentage-calculator\/\">\n                    Scrap Percentage Calculator\n                <\/a>\n            <\/div>\n\n            <div class=\"percentage-card\">\n                <a href=\"https:\/\/percentagedecreasecalculator.com\/absenteeism-percentage-calculator\/\">\n                    Absence Percentage Calculator\n                <\/a>\n            <\/div>\n\n        <\/div>\n\n    <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">What is Percentage Decrease Calculator?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A <strong>Percentage Decrease Calculator<\/strong> is a free online math tool that helps you find how much a value has <strong>reduced<\/strong> in terms of percentage. It compares two numbers \u2014 the <strong>starting value<\/strong> and the <strong>final value<\/strong> \u2014 and instantly shows:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Percentage decrease<\/li>\n\n\n\n<li>Step-by-step formula breakdown<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">The Percentage Reduction Calculator is widely used in discounts and shopping price reductions across countries like the United States, United Kingdom, Australia, Canada, India, and many more \u2014 especially in finance, tax calculations, salary changes, and data comparison.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The percentage decrease calculator image is shown below:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https:\/\/percentagedecreasecalculator.com\/wp-content\/uploads\/percentage-decrease-calculator.webp\" alt=\"percentage decrease calculator\" title=\"percentage decrease calculator\"\/><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\">Percentage Decrease Formula<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The standard formula for calculating percent decrease is:<\/p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\"><strong>Percentage Decrease = ((Original Value &#8211; New Value) \/ Original Value) \u00d7 100<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Where:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Original Value = Starting value<\/li>\n\n\n\n<li>New Value = Final value after decrease<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If the percentage result is <strong>positive<\/strong>, it indicates a decrease.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Percentage Increase Formula<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To calculate percentage increase, use this formula:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Percentage Increase = ((New Value &#8211; Original Value) \/ Original Value) \u00d7 100<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What it means<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Original Value<\/strong> is the starting number<\/li>\n\n\n\n<li><strong>New Value<\/strong> is the number after the increase<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Important<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If the result is <strong>positive<\/strong>, it means the value has increased<\/li>\n\n\n\n<li>If the result is <strong>negative<\/strong>, it actually means there was a decrease<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Example<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Original Value = 100<\/li>\n\n\n\n<li>New Value = 120<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Percentage Increase = (120 &#8211; 100) \/ 100 \u00d7 100 = 20%<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So, the value increased by <strong>20%<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Use Percentage Decrease Calculator?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The online percentage decrease calculator works by simple following steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Step 1<\/strong>: Input Starting and Final Value<\/li>\n\n\n\n<li><strong>Step 2<\/strong>: Click calculate button<\/li>\n\n\n\n<li><strong>Step 3<\/strong>: Get the output or result with the step by step solution.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Note<\/strong>: You can start new percentage decrease calculation by clicking on clear button<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This makes the tool helpful not only for quick answers, but also for <strong>learning and teaching percentage decrease<\/strong>.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/percentagedecreasecalculator.com\/wp-content\/uploads\/how-to-use-percentage-decrease-calculator-infographic.webp\" alt=\"how to use percentage decrease calculator infographic\" style=\"width:477px;height:auto\" title=\"how to use percentage decrease calculator infographic\"\/><\/figure>\n<\/div>\n\n\n<style>\n.percentage-example-wrapper{\n    max-width:1200px;\n    margin:40px auto;\nmargin-top: -10px;\n    padding:20px;\n    font-family:Arial,sans-serif;\n}\n\n.percentage-example-title{\n    text-align:center;\n    font-size:30px;\n    font-weight:700;\n    color:#111827;\n    margin-bottom:15px;\n}\n\n.percentage-example-subtitle{\n    text-align:center;\n    color:#6b7280;\n    font-size:16px;\n    margin-bottom:45px;\n    line-height:1.7;\n}\n\n.percentage-example-grid{\n    display:grid;\n    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));\n    gap:22px;\n}\n\n.percentage-example-card{\n    background:#f8fafc;\n    border:2px solid #2563eb;\n    border-radius:22px;\n    padding:24px;\n}\n\n.percentage-example-card h3{\n    margin-top:0;\n    margin-bottom:14px;\n    font-size:21px;\n    color:#111827;\n}\n\n.percentage-example-card p{\n    margin:10px 0;\n    color:#374151;\n    line-height:1.7;\n    font-size:15px;\n}\n\n.percentage-example-answer{\n    margin-top:18px;\n    background:#eff6ff;\n    padding:14px;\n    border-radius:14px;\n    color:#1d4ed8;\n    font-weight:700;\n}\n\n.percentage-formula{\n    background:#f3f4f6;\n    padding:12px;\n    border-radius:12px;\n    font-family:monospace;\n    overflow:auto;\n    margin:14px 0;\n    color:#111827;\n}\n\n@media(max-width:768px){\n\n    .percentage-example-title{\n        font-size:25px;\n    }\n\n    .percentage-example-card{\n        padding:20px;\n    }\n\n}\n<\/style>\n\n<div class=\"percentage-example-wrapper\">\n\n    <h2 class=\"percentage-example-title\">\n        6 Example Problems of Percentage Decrease\n    <\/h2>\n\n    <p class=\"percentage-example-subtitle\">\n        Learn how percentage decrease works with real-life examples from shopping, business, education, health, fuel prices, and population studies.\n    <\/p>\n\n    <div class=\"percentage-example-grid\">\n\n        <!-- Example 1 -->\n        <div class=\"percentage-example-card\">\n\n            <h3>\n                1. Shopping Discount\n            <\/h3>\n\n            <p>\n                A jacket originally costs <strong>$120<\/strong>. During a sale, the price drops to <strong>$90<\/strong>.\n            <\/p>\n\n            <div class=\"percentage-formula\">\n                ((120 &#8211; 90) \u00f7 120) \u00d7 100\n            <\/div>\n\n            <div class=\"percentage-example-answer\">\n                Percentage Decrease = 25%\n            <\/div>\n\n        <\/div>\n\n        <!-- Example 2 -->\n        <div class=\"percentage-example-card\">\n\n            <h3>\n                2. Population Decline\n            <\/h3>\n\n            <p>\n                A town had <strong>50,000<\/strong> residents last year. This year, the population dropped to <strong>46,000<\/strong>.\n            <\/p>\n\n            <div class=\"percentage-formula\">\n                ((50000 &#8211; 46000) \u00f7 50000) \u00d7 100\n            <\/div>\n\n            <div class=\"percentage-example-answer\">\n                Percentage Decrease = 8%\n            <\/div>\n\n        <\/div>\n\n        <!-- Example 3 -->\n        <div class=\"percentage-example-card\">\n\n            <h3>\n                3. Exam Score Reduction\n            <\/h3>\n\n            <p>\n                Sarah scored <strong>88 marks<\/strong> in her first test and <strong>70 marks<\/strong> in her second test.\n            <\/p>\n\n            <div class=\"percentage-formula\">\n                ((88 &#8211; 70) \u00f7 88) \u00d7 100\n            <\/div>\n\n            <div class=\"percentage-example-answer\">\n                Percentage Decrease = 20.45%\n            <\/div>\n\n        <\/div>\n\n        <!-- Example 4 -->\n        <div class=\"percentage-example-card\">\n\n            <h3>\n                4. Business Revenue Drop\n            <\/h3>\n\n            <p>\n                A company earned <strong>$250,000<\/strong> in January and <strong>$200,000<\/strong> in February.\n            <\/p>\n\n            <div class=\"percentage-formula\">\n                ((250000 &#8211; 200000) \u00f7 250000) \u00d7 100\n            <\/div>\n\n            <div class=\"percentage-example-answer\">\n                Percentage Decrease = 20%\n            <\/div>\n\n        <\/div>\n\n        <!-- Example 5 -->\n        <div class=\"percentage-example-card\">\n\n            <h3>\n                5. Weight Loss Progress\n            <\/h3>\n\n            <p>\n                John weighed <strong>95 kg<\/strong> before starting his fitness program. After 6 months, his weight became <strong>80 kg<\/strong>.\n            <\/p>\n\n            <div class=\"percentage-formula\">\n                ((95 &#8211; 80) \u00f7 95) \u00d7 100\n            <\/div>\n\n            <div class=\"percentage-example-answer\">\n                Percentage Decrease = 15.79%\n            <\/div>\n\n        <\/div>\n\n        <!-- Example 6 -->\n        <div class=\"percentage-example-card\">\n\n            <h3>\n                6. Fuel Price Reduction\n            <\/h3>\n\n            <p>\n                The price of petrol decreased from <strong>$5.00 per gallon<\/strong> to <strong>$4.20 per gallon<\/strong>.\n            <\/p>\n\n            <div class=\"percentage-formula\">\n                ((5.00 &#8211; 4.20) \u00f7 5.00) \u00d7 100\n            <\/div>\n\n            <div class=\"percentage-example-answer\">\n                Percentage Decrease = 16%\n            <\/div>\n\n        <\/div>\n\n    <\/div>\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">How to Calculate Percentage Decline Manually?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Follow these simple steps to Calculate Percentage Decrease:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 1:<\/strong> Subtract the final value from the original value (Decrease = Original \u2212 New)<br><strong>Step 2:<\/strong> Divide the decrease by the original value<br><strong>Step 3:<\/strong> Multiply the result by 100<br><strong>Step 4:<\/strong> Add the percentage sign (%)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Example<\/strong>: Price decreases from $500 to $350<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Decrease = 500 &#8211; 350 = 150<br>Percentage Decrease = (150 \/ 500) \u00d7 100 = 30%<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u2714 Answer: <strong>30% decrease<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Bar graph of revenue drop example image is shared below:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/percentagedecreasecalculator.com\/wp-content\/uploads\/bar-graph-of-revenue-drop-example.webp\" alt=\"bar graph of revenue drop example\" style=\"width:526px;height:auto\" title=\"bar graph of revenue drop example\"\/><\/figure>\n<\/div>\n\n\n<p class=\"wp-block-paragraph\">How to calculate percentage decrease in easy steps \u2014 YouTube video is shared below:<\/p>\n\n\n\n<!-- Responsive Lazy YouTube Embed -->\n<div class=\"lazy-youtube\" \n     style=\"position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%;background:#000;border-radius:12px;\">\n  <button type=\"button\" aria-label=\"Play Hex Calculator Tutorial video\"\n    onclick=\"const f=document.createElement('iframe');\n             f.setAttribute('src','https:\/\/www.youtube.com\/embed\/n5up3inAi4M');\n             f.setAttribute('title','How to Work out Percentage Decrease');\n             f.setAttribute('allow','accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share');\n             f.setAttribute('allowfullscreen','');\n             f.style.position='absolute';\n             f.style.top='0';\n             f.style.left='0';\n             f.style.width='100%';\n             f.style.height='100%';\n             this.replaceWith(f);\"\n    style=\"position:absolute;top:0;left:0;width:100%;height:100%;\n           background:url('https:\/\/percentagedecreasecalculator.com\/wp-content\/uploads\/percentage-decrease-youtube-thumbnail.webp') center center \/ cover no-repeat;\n           border:none;cursor:pointer;\">\n    <span style=\"position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);\n                 width:68px;height:48px;\n                 background:url('https:\/\/www.gstatic.com\/images\/icons\/material\/system\/2x\/play_circle_filled_white_48dp.png')\n                 center center \/ contain no-repeat;\"><\/span>\n  <\/button>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\">You can also simply enter values into the calculator above \u2014 no manual math needed!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Are The Use Cases of Percentage Lower Calculator?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This calculator is useful for:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Price and discount calculations in shopping<\/li>\n\n\n\n<li>Fitness and <strong>weight loss percentage<\/strong><\/li>\n\n\n\n<li><strong>Profit decline<\/strong> or <strong>business KPIs<\/strong><\/li>\n\n\n\n<li><strong>Population decay<\/strong> and scientific reductions<\/li>\n\n\n\n<li>Stock market losses<\/li>\n\n\n\n<li>Depreciation of assets like cars or gadgets<\/li>\n\n\n\n<li>Exam score drops<\/li>\n\n\n\n<li>Budget cut analysis<\/li>\n\n\n\n<li>Comparing data over time<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Anywhere a number <strong>goes down<\/strong>, you can measure the drop using this tool.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Are The Benefits of Percentage Reduction Calculator?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This calculator is beneficial for:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u2714 Saves time with instant results<br>\u2714 No manual math errors<br>\u2714 Displays formula and full calculation steps<br>\u2714 Makes school math and homework easier<br>\u2714 Helps track goals like <strong>weight loss<\/strong>, <strong>expenses<\/strong>, etc.<br>\u2714 Useful for business data reporting<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Professionals and students both rely on this tool daily.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Are The Features of Percentage Drop Calculator?<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-center\" data-align=\"center\">Feature<\/th><th class=\"has-text-align-center\" data-align=\"center\">Benefit<\/th><\/tr><\/thead><tbody><tr><td class=\"has-text-align-center\" data-align=\"center\">Fast calculation<\/td><td class=\"has-text-align-center\" data-align=\"center\">Instant percentage decrease output<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Step-by-step explanation<\/td><td class=\"has-text-align-center\" data-align=\"center\">Learn how the math works<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Increase\/Decrease detection<\/td><td class=\"has-text-align-center\" data-align=\"center\">Shows correct direction of change<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">User-friendly fields<\/td><td class=\"has-text-align-center\" data-align=\"center\">Designed for mobile and desktop<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Free to use<\/td><td class=\"has-text-align-center\" data-align=\"center\">No login, no limits<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Percentage Decrease Table<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th class=\"has-text-align-center\" data-align=\"center\">Original Value<\/th><th class=\"has-text-align-center\" data-align=\"center\">New Value<\/th><th class=\"has-text-align-center\" data-align=\"center\">Percent Decrease<\/th><\/tr><\/thead><tbody><tr><td class=\"has-text-align-center\" data-align=\"center\">100<\/td><td class=\"has-text-align-center\" data-align=\"center\">90<\/td><td class=\"has-text-align-center\" data-align=\"center\">10%<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">100<\/td><td class=\"has-text-align-center\" data-align=\"center\">80<\/td><td class=\"has-text-align-center\" data-align=\"center\">20%<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">100<\/td><td class=\"has-text-align-center\" data-align=\"center\">70<\/td><td class=\"has-text-align-center\" data-align=\"center\">30%<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">100<\/td><td class=\"has-text-align-center\" data-align=\"center\">60<\/td><td class=\"has-text-align-center\" data-align=\"center\">40%<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">100<\/td><td class=\"has-text-align-center\" data-align=\"center\">50<\/td><td class=\"has-text-align-center\" data-align=\"center\">50%<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">FAQs About Percentage Decrease Calculator<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Q1: How to do calculate 20% decrease?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A1<\/strong>: To reduce a number by 20%, multiply it by 0.80. For example, 500 minus 20% becomes 500 \u00d7 0.80 = 400. You can also calculate it manually by finding 20% of the original value and subtracting it from the original number.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q2: How to calculate 30% decrease?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A2:<\/strong> To calculate a 30% decrease, multiply the original value by 0.70. For example, if you reduce 200 by 30%, the result is 200 \u00d7 0.70 = 140. This means the value has decreased by 60 units or 30%.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q3: How to calculate a 40% decrease?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A3:<\/strong> To apply a 40% decrease, multiply the starting value by 0.60. For instance, if something originally costs 50 and the price drops by 40%, the new price is 50 \u00d7 0.60 = 30, which means the price fell by 20 units.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q4: What is the formula to reduce a number by a percentage?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A4:<\/strong> The formula to reduce a number by a percentage is: New Value = Original Value \u00d7 (1 \u2212 Percentage\/100). So if you reduce 150 by 15%, you do 150 \u00d7 0.85 = 127.5.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q5: How to decrease a number by a percentage in Excel?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A5:<\/strong> In Excel, multiply the original number by (1 \u2212 percentage). For example, if A1 contains the original value and you want to decrease it by 25%, use the formula: <code>=A1*(1-25%)<\/code>. The cell will show the reduced value instantly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q6: What is the difference between percentage decrease and discount?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A6:<\/strong> There is no mathematical difference \u2014 a discount is a practical example of a percentage decrease. The term \u201cdiscount\u201d is mostly used in shopping and price reduction, while \u201cpercentage decrease\u201d is used for general math and data analysis.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q7: Why is percentage decrease important?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A7:<\/strong> Percentage decrease helps you measure reduction in a meaningful way by comparing how big the drop is relative to the original value. It is widely used in finance, budgeting, weight tracking, population studies, business analytics, and daily life decisions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q8: Can percentage decrease be more than 100%?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A8:<\/strong> Yes, if the final value becomes negative or drops more than the original value, the percentage decrease can exceed 100%. However, in most real-life scenarios where values cannot go below zero, percentage decrease stays between 0% and 100%.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q9: What does a negative percentage decrease mean?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A9:<\/strong> A negative percentage decrease means the value has actually increased. If the result of a percentage change calculation is negative, it should be interpreted as a <strong>percentage increase<\/strong>, not a decrease.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q10: The price of a calculator has decreased from $200 to $150. what is the percentage of decrease?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A10:<\/strong> The price dropped by $50 (200 \u2212 150). Using the percentage decrease formula: (50 \u00f7 200) \u00d7 100 = 25%. Therefore, the calculator\u2019s price has decreased by <strong>25%<\/strong>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Calculate percentage decrease between two values with step-by-step solution. Starting Value: Final Value: Calculate Clear Popular Percentage Calculators Collection Browse all percentage calculators organized into logical categories for a better user experience. General Percentage Calculators Average Percentage Calculator Percentage Point Calculator Time Percentage Calculator Percentage Standard Deviation Calculator Percent to Goal Calculator Goal to Percentage&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"class_list":["post-8","page","type-page","status-publish"],"_links":{"self":[{"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/pages\/8","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/comments?post=8"}],"version-history":[{"count":36,"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/pages\/8\/revisions"}],"predecessor-version":[{"id":784,"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/pages\/8\/revisions\/784"}],"wp:attachment":[{"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/media?parent=8"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}