[{"@context":"https:\/\/schema.org\/","@type":"BlogPosting","@id":"https:\/\/mbbs.com.pk\/nums-aggregate-calculator\/#BlogPosting","mainEntityOfPage":"https:\/\/mbbs.com.pk\/nums-aggregate-calculator\/","headline":"Nums Aggregate Calculator 2025 &#8211; Formula","name":"Nums Aggregate Calculator 2025 &#8211; Formula","description":"Here is the NUMS Aggregate Formula 2025 for admission to MBBS\/BDS.\u00a0 We added the Nums Aggregate calculator, Which will help you to calculate on the way. Aggregate Calculator \ud83c\udf19 Enable Dark Mode Aggregate Calculator Matric Marks: Maximum Matric Marks: FSC Marks: Maximum FSC Marks: Test Marks: Maximum Test Marks: Calculate Aggregate Aggregate: 0% Name: Email: Phone Number: \ud83e\uddfe Export PDF Powered by MBBS.Com.Pk Nums Aggregate Formula Here is the confirmed aggregate formula for admission in 2024, In NUMS Affiliated medical and dental colleges. NUMS Merit Formula MDCAT For NUMS 50% F.sc (Pre-Med)\/Equivalent 40% SSC\/Matriculation\/Equivalent 10% &nbsp; ELIGIBILITY CRITERIA As per [&hellip;]","datePublished":"2025-09-28","dateModified":"2025-09-28","author":{"@type":"Person","@id":"https:\/\/mbbs.com.pk\/author\/mbbscom\/#Person","name":"Muhammad Ikram Sadiq","url":"https:\/\/mbbs.com.pk\/author\/mbbscom\/","identifier":1,"image":{"@type":"ImageObject","@id":"https:\/\/secure.gravatar.com\/avatar\/89a9a52d47155eaad2cdcabf3f12ed56b50d7112504e4be36b4e9a202ca79f9a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/89a9a52d47155eaad2cdcabf3f12ed56b50d7112504e4be36b4e9a202ca79f9a?s=96&d=mm&r=g","height":96,"width":96}},"publisher":{"@type":"Organization","name":"Muhammad IKram Sadiq","logo":{"@type":"ImageObject","@id":"https:\/\/mbbs.com.pk\/wp-content\/uploads\/2017\/12\/ikram.jpg","url":"https:\/\/mbbs.com.pk\/wp-content\/uploads\/2017\/12\/ikram.jpg","width":600,"height":60}},"image":{"@type":"ImageObject","@id":"https:\/\/mbbs.com.pk\/wp-content\/uploads\/2022\/11\/nums-aggregate-calculator-2022.webp","url":"https:\/\/mbbs.com.pk\/wp-content\/uploads\/2022\/11\/nums-aggregate-calculator-2022.webp","height":556,"width":961},"url":"https:\/\/mbbs.com.pk\/nums-aggregate-calculator\/","commentCount":5115,"about":["NUMS"],"wordCount":181,"articleBody":"Here is the NUMS Aggregate Formula 2025 for admission to MBBS\/BDS.\u00a0 We added the Nums Aggregate calculator, Which will help you to calculate on the way.      Aggregate Calculator        body {      font-family: Arial, sans-serif;      background-color: #f9f9f9;      margin: 0;      padding: 20px;    }    .aggregate-calculator-container {      max-width: 500px;      margin: auto;      background-color: #fff;      padding: 25px;      border-radius: 10px;      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);    }    h2 {      text-align: center;      margin-bottom: 20px;    }    .input-group {      margin-bottom: 15px;    }    .input-group label {      font-weight: bold;      display: block;      margin-bottom: 5px;    }    .input-group input {      width: 100%;      padding: 10px;      border-radius: 5px;      border: 1px solid #ccc;      font-size: 16px;    }    .calculate-btn, .export-btn {      width: 100%;      padding: 12px;      font-size: 16px;      margin-top: 10px;      cursor: pointer;      border: none;      border-radius: 5px;    }    .calculate-btn {      background-color: #008000;      color: white;    }    .export-btn {      background-color: #0066cc;      color: white;      display: none;    }    .calculate-btn:hover {      background-color: #006400;    }    .export-btn:hover {      background-color: #004a99;    }    .result {      text-align: center;      font-size: 20px;      font-weight: bold;      margin-top: 15px;    }    .footer {      text-align: center;      margin-top: 30px;      font-size: 14px;      color: #666;    }    .user-info {      display: none;      margin-top: 20px;    }    .dark-mode {      background-color: #121212;      color: #f0f0f0;    }    .dark-mode .aggregate-calculator-container {      background-color: #1e1e1e;    }    .dark-mode input,    .dark-mode .calculate-btn,    .dark-mode .export-btn {      background-color: #2a2a2a;      color: white;      border-color: #555;    }    .toggle-btn {      display: block;      margin: 0 auto 20px;      padding: 10px;      background-color: #333;      color: white;      border: none;      border-radius: 5px;      cursor: pointer;    }    .toggle-btn:hover {      background-color: #222;    }    \ud83c\udf19 Enable Dark Mode      Aggregate Calculator          Matric Marks:                    Maximum Matric Marks:                    FSC Marks:                    Maximum FSC Marks:                    Test Marks:                    Maximum Test Marks:              Calculate Aggregate          Aggregate: 0%                      Name:                            Email:                            Phone Number:                    \ud83e\uddfe Export PDF            Powered by MBBS.Com.Pk        function toggleDarkMode() {      const body = document.body;      const button = document.getElementById('darkModeBtn');      body.classList.toggle('dark-mode');      button.textContent = body.classList.contains('dark-mode') ?        '\u2600\ufe0f Disable Dark Mode' : '\ud83c\udf19 Enable Dark Mode';    }    function calculateAggregate() {      const matric = parseFloat(document.getElementById('matric-marks').value) || 0;      const matricMax = parseFloat(document.getElementById('matric-max-marks').value) || 1100;      const fsc = parseFloat(document.getElementById('fsc-marks').value) || 0;      const fscMax = parseFloat(document.getElementById('fsc-max-marks').value) || 1100;      const test = parseFloat(document.getElementById('test-marks').value) || 0;      const testMax = parseFloat(document.getElementById('test-max-marks').value) || 200;      const matricPercent = (matric \/ matricMax) * 100;      const fscPercent = (fsc \/ fscMax) * 100;      const testPercent = (test \/ testMax) * 100;      const aggregate = (matricPercent * 0.10) + (fscPercent * 0.40) + (testPercent * 0.50);      document.getElementById('aggregate-result').textContent = aggregate.toFixed(2) + '%';      \/\/ Show result and user info section      document.getElementById('aggregate-display').style.display = 'block';      document.getElementById('user-info').style.display = 'block';      document.getElementById('export-btn').style.display = 'block';    }    async function exportToPDF() {      const name = document.getElementById('user-name').value.trim();      const email = document.getElementById('user-email').value.trim();      const phone = document.getElementById('user-phone').value.trim();      const aggregate = document.getElementById('aggregate-result').textContent;      if (!name || !email || !phone) {        alert(\"\u274c Please fill in your name, email, and phone number before exporting.\");        return;      }      const { jsPDF } = window.jspdf;      const doc = new jsPDF();      doc.setFont(\"helvetica\", \"bold\");      doc.setFontSize(22);      doc.text(\"MBBS Aggregate Report\", 105, 20, { align: \"center\" });      doc.setFontSize(14);      doc.setLineWidth(0.5);      doc.setDrawColor(100);      doc.rect(20, 30, 170, 80);      doc.setFont(\"helvetica\", \"normal\");      doc.text(`Name:`, 25, 45);      doc.text(name, 60, 45);      doc.text(`Email:`, 25, 55);      doc.text(email, 60, 55);      doc.text(`Phone:`, 25, 65);      doc.text(phone, 60, 65);      doc.setFont(\"helvetica\", \"bold\");      doc.setTextColor(0, 102, 0);      doc.text(`Aggregate Score:`, 25, 80);      doc.text(aggregate, 80, 80);      const now = new Date();      doc.setFontSize(10);      doc.setTextColor(120);      doc.text(`Generated on: ${now.toLocaleDateString()} ${now.toLocaleTimeString()}`, 20, 120);      doc.setFont(\"helvetica\", \"italic\");      doc.setFontSize(12);      doc.setTextColor(0, 150, 0);      doc.text(\"Powered by MBBS.Com.Pk\", 105, 135, { align: \"center\" });      doc.save(\"aggregate_result.pdf\");    }  Nums Aggregate FormulaHere is the confirmed aggregate formula for admission in 2024, In NUMS Affiliated medical and dental colleges.     (adsbygoogle = window.adsbygoogle || []).push({}); NUMS Merit Formula MDCAT For NUMS50%F.sc (Pre-Med)\/Equivalent40%SSC\/Matriculation\/Equivalent10%&nbsp;ELIGIBILITY CRITERIAAs per PMC, Medical and Dental Undergraduate Education (Admission, Curriculum andConduct) Regulations.All Pakistanis having valid citizenship (Including citizens of AJK and Gilgit-Baltistan) canapply for Admission.Minimum 60% aggregate marks in FSc (Pre-Medical) or equivalent having minimumtwelve years of education.Passing &#8220;MDCAT for NUMS&#8221; with a minimum 55% mark is mandatory (Held on 16th Oct) for applying for admission in only NUMS constituent \/ affiliated medical colleges.Have Any Questions? Comment below. Our Team will help you.All the rules &amp; regulations framed by PMC \/ HEC \/ NUMS.\t\t\t\t\t\tjQuery(document).ready(function( $) {\t\t\t\t$.post( 'https:\/\/mbbs.com.pk\/wp-admin\/admin-ajax.php', {action: 'mts_view_count', id: '29269'});\t\t\t});\t\t\t"},{"@context":"https:\/\/schema.org\/","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Nums Aggregate Calculator 2025 &#8211; Formula","item":"https:\/\/mbbs.com.pk\/nums-aggregate-calculator\/#breadcrumbitem"}]}]