7 of My Body Weight Calculator

7 of My Body Weight Calculator: Understand Your Training Load :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –border-color: #ddd; –card-background: #fff; –error-color: #dc3545; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(–background-color); color: var(–text-color); line-height: 1.6; margin: 0; padding: 0; } .container { max-width: 1000px; margin: 20px auto; padding: 20px; background-color: var(–card-background); border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } header { background-color: var(–primary-color); color: white; padding: 20px 0; text-align: center; margin-bottom: 20px; border-radius: 8px 8px 0 0; } header h1 { margin: 0; font-size: 2.5em; } .calculator-section { margin-bottom: 40px; padding: 30px; border: 1px solid var(–border-color); border-radius: 8px; background-color: var(–card-background); } .calculator-section h2 { color: var(–primary-color); text-align: center; margin-top: 0; margin-bottom: 25px; font-size: 1.8em; } .loan-calc-container { display: flex; flex-direction: column; gap: 20px; } .input-group { display: flex; flex-direction: column; gap: 8px; } .input-group label { font-weight: bold; color: var(–primary-color); } .input-group input[type="number"], .input-group select { padding: 12px; border: 1px solid var(–border-color); border-radius: 5px; font-size: 1em; transition: border-color 0.3s ease; } .input-group input[type="number"]:focus, .input-group select:focus { border-color: var(–primary-color); outline: none; } .input-group .helper-text { font-size: 0.85em; color: #6c757d; } .error-message { color: var(–error-color); font-size: 0.85em; margin-top: 5px; display: none; /* Hidden by default */ } .error-message.visible { display: block; } .button-group { display: flex; gap: 15px; margin-top: 25px; justify-content: center; flex-wrap: wrap; } button { padding: 12px 25px; border: none; border-radius: 5px; font-size: 1em; font-weight: bold; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; color: white; } button.primary { background-color: var(–primary-color); } button.primary:hover { background-color: #003366; transform: translateY(-2px); } button.success { background-color: var(–success-color); } button.success:hover { background-color: #218838; transform: translateY(-2px); } button.secondary { background-color: #6c757d; } button.secondary:hover { background-color: #5a6268; transform: translateY(-2px); } #results { margin-top: 30px; padding: 25px; border: 1px solid var(–border-color); border-radius: 8px; background-color: var(–card-background); text-align: center; display: none; /* Hidden by default */ } #results.visible { display: block; } #results h3 { color: var(–primary-color); margin-top: 0; font-size: 1.6em; } .result-item { margin-bottom: 15px; font-size: 1.1em; } .result-item strong { color: var(–primary-color); font-size: 1.3em; } .primary-result { font-size: 1.8em; font-weight: bold; color: var(–success-color); background-color: #e9f7ec; padding: 15px; border-radius: 5px; margin-bottom: 20px; display: inline-block; } .formula-explanation { font-size: 0.95em; color: #555; margin-top: 20px; padding-top: 15px; border-top: 1px dashed var(–border-color); } .chart-container { margin-top: 30px; padding: 25px; border: 1px solid var(–border-color); border-radius: 8px; background-color: var(–card-background); text-align: center; } .chart-container h3 { color: var(–primary-color); margin-top: 0; font-size: 1.6em; } canvas { max-width: 100%; height: auto; } .table-container { margin-top: 30px; padding: 25px; border: 1px solid var(–border-color); border-radius: 8px; background-color: var(–card-background); overflow-x: auto; } .table-container h3 { color: var(–primary-color); margin-top: 0; font-size: 1.6em; text-align: center; } table { width: 100%; border-collapse: collapse; margin-top: 15px; } th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(–border-color); } thead th { background-color: var(–primary-color); color: white; font-weight: bold; } tbody tr:nth-child(even) { background-color: #f2f2f2; } tbody tr:hover { background-color: #e9ecef; } .article-content { margin-top: 40px; padding: 30px; background-color: var(–card-background); border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .article-content h2, .article-content h3 { color: var(–primary-color); margin-top: 30px; margin-bottom: 15px; } .article-content h2 { font-size: 2em; border-bottom: 2px solid var(–primary-color); padding-bottom: 5px; } .article-content h3 { font-size: 1.5em; } .article-content p, .article-content ul, .article-content ol { margin-bottom: 15px; font-size: 1.05em; } .article-content ul, .article-content ol { padding-left: 25px; } .article-content li { margin-bottom: 8px; } .article-content strong { color: var(–primary-color); } .faq-item { margin-bottom: 20px; padding: 15px; border: 1px solid var(–border-color); border-radius: 5px; background-color: #fdfdfd; } .faq-item strong { display: block; color: var(–primary-color); font-size: 1.1em; margin-bottom: 5px; } .internal-links { margin-top: 30px; padding: 25px; border: 1px solid var(–border-color); border-radius: 8px; background-color: var(–card-background); } .internal-links h3 { color: var(–primary-color); margin-top: 0; font-size: 1.6em; text-align: center; } .internal-links ul { list-style: none; padding: 0; } .internal-links li { margin-bottom: 10px; } .internal-links a { color: var(–primary-color); text-decoration: none; font-weight: bold; } .internal-links a:hover { text-decoration: underline; } .internal-links p { font-size: 0.95em; color: #555; margin-top: 5px; } @media (min-width: 768px) { .container { margin: 30px auto; padding: 30px; } .calculator-section, .article-content, .chart-container, .table-container, .internal-links { padding: 40px; } header h1 { font-size: 3em; } .calculator-section h2 { font-size: 2.2em; } .button-group { justify-content: center; } }

7 of My Body Weight Calculator

Understand and calculate your training load accurately.

Calculate 7 of Your Body Weight

Enter your current body weight in kilograms (kg).
Strength Training (e.g., Deadlifts, Squats) Power Training (e.g., Olympic Lifts) Endurance Training (e.g., Long Distance Running) Select the primary type of training you are performing.

Your Training Load Insights

Target Weight for 7x Bodyweight Lift:
Recommended Weight for Strength Focus:
Recommended Weight for Power Focus:
Recommended Weight for Endurance Focus:
Formula Used: The core calculation for "7 of my body weight" is simply your body weight multiplied by 7. This is a benchmark often used in strength training, particularly for exercises like the deadlift, to gauge maximal strength potential. Intermediate values are derived by applying common training percentages relative to this 7x benchmark, adjusted for different training modalities.

Training Load Distribution

Visualizing the distribution of your calculated training loads across different focuses.

Training Load Benchmarks

Training Type Benchmark Multiplier Typical Application Calculated Weight (kg)
7x Bodyweight Benchmark 7.0x Max Strength (e.g., Deadlift)
Strength Focus 5.0x – 6.0x Building Maximal Strength
Power Focus 3.0x – 4.0x Explosive Strength & Speed
Endurance Focus 1.5x – 2.5x Strength Endurance & Conditioning

Comparison of different training load multipliers relative to your body weight.

What is the 7 of My Body Weight Benchmark?

The "7 of my body weight" benchmark is a popular metric in the strength training community, primarily used to assess an individual's maximal strength potential, especially in compound lifts like the deadlift. It represents the weight an individual can lift that is equivalent to seven times their own body weight. Achieving this benchmark is a significant milestone for many athletes and lifters, indicating a high level of strength relative to their size. It's not just about lifting heavy; it's about demonstrating a powerful and efficient application of force.

Who should use it: This benchmark is most relevant for individuals engaged in strength sports such as powerlifting, weightlifting, and strongman competitions. It's also a valuable target for serious recreational lifters aiming to maximize their strength gains. While it's a high-level goal, understanding the concept can help intermediate lifters set ambitious yet achievable targets. It's less relevant for purely aesthetic-focused bodybuilding or general fitness enthusiasts, though it can serve as an aspirational goal.

Common misconceptions: A common misconception is that this benchmark applies equally to all exercises. The 7x bodyweight standard is almost exclusively associated with the deadlift due to its biomechanical advantages allowing for heavier loads. Applying it directly to squats or bench presses would be unrealistic for most individuals. Another misconception is that it's solely about raw strength; proper technique, programming, and recovery are crucial to reaching such a high level. Finally, it's often seen as an end goal, rather than a marker on a continuous journey of strength development.

7 of My Body Weight Benchmark Formula and Mathematical Explanation

The core concept of the "7 of my body weight" benchmark is straightforward multiplication. However, understanding how to apply it and derive related training loads involves a deeper look at strength training principles.

Core Benchmark Calculation

The fundamental formula is:

Benchmark Lift Weight = Body Weight × 7

Deriving Training Loads

To create practical training recommendations, we often use percentages of this benchmark or directly apply percentages of body weight adjusted for training type. Here's a breakdown:

  • 7x Bodyweight Target (Max Strength): This is the primary goal. For an 80kg individual, this would be 80kg * 7 = 560kg. This is an elite-level deadlift.
  • Strength Focus (e.g., 5x-6x Bodyweight): To build the strength required for the 7x benchmark, lifters often train in the 5x to 6x bodyweight range. For an 80kg individual, this translates to 400kg – 480kg.
  • Power Focus (e.g., 3x-4x Bodyweight): Developing explosive power involves lifting lighter weights faster. This might be in the 3x to 4x bodyweight range. For an 80kg individual, this is 240kg – 320kg.
  • Endurance Focus (e.g., 1.5x-2.5x Bodyweight): For strength endurance or conditioning, weights are significantly lower, focusing on higher repetitions or longer durations. For an 80kg individual, this is 120kg – 200kg.

Variable Explanations

Here's a table detailing the variables involved:

Variable Meaning Unit Typical Range
Body Weight The individual's current mass. Kilograms (kg) 30kg – 200kg+
Benchmark Multiplier The factor applied to body weight to determine a target lift weight. Unitless 1.5x to 7.0x (or higher for elite athletes)
Calculated Lift Weight The target weight for a specific exercise or training goal. Kilograms (kg) Varies greatly based on multiplier and body weight
Training Type The primary goal of the training session (Strength, Power, Endurance). Categorical Strength, Power, Endurance, Hypertrophy, etc.

Practical Examples (Real-World Use Cases)

Example 1: The Aspiring Powerlifter

Scenario: Alex is a 90kg male powerlifter aiming to achieve a 7x bodyweight deadlift. He currently deadlifts 450kg.

Inputs:

  • Body Weight: 90 kg
  • Current Deadlift: 450 kg (This is used for context, not direct calculation in this simplified tool)

Calculations using the calculator:

  • 7 of My Body Weight Result: 90 kg * 7 = 630 kg
  • Strength Focus Weight: 90 kg * 5.5 (average of 5x-6x) = 495 kg
  • Power Focus Weight: 90 kg * 3.5 (average of 3x-4x) = 315 kg
  • Endurance Focus Weight: 90 kg * 2.0 (average of 1.5x-2.5x) = 180 kg

Interpretation: Alex's goal of 630kg is significantly higher than his current 450kg deadlift. The calculated intermediate weights (495kg for strength, 315kg for power, 180kg for endurance) provide him with target loads for different phases of his training program. He might use 495kg for heavy sets, 315kg for explosive work, and 180kg for conditioning circuits.

Example 2: The Recreational Lifter Focused on General Strength

Scenario: Sarah weighs 65kg and is interested in improving her overall strength, not necessarily competing. She wants to understand what "strong" looks like relative to her body weight.

Inputs:

  • Body Weight: 65 kg
  • Training Type: Strength Training

Calculations using the calculator:

  • 7 of My Body Weight Result: 65 kg * 7 = 455 kg
  • Strength Focus Weight: 65 kg * 5.5 = 357.5 kg
  • Power Focus Weight: 65 kg * 3.5 = 227.5 kg
  • Endurance Focus Weight: 65 kg * 2.0 = 130 kg

Interpretation: The 455kg benchmark highlights that the 7x bodyweight standard is an elite, specialized goal, likely unattainable for most recreational lifters, especially in exercises other than the deadlift. Sarah can use the calculated "Strength Focus" weight (around 358kg) as a more realistic, yet still challenging, strength target for her primary lifts (like deadlifts or squats). The power and endurance figures give her context for different training modalities.

How to Use This 7 of My Body Weight Calculator

Our calculator is designed to be intuitive and provide quick insights into strength training loads relative to your body weight. Follow these simple steps:

  1. Enter Your Body Weight: In the "Your Body Weight" field, input your current weight in kilograms (kg). Ensure accuracy for the most relevant results.
  2. Select Training Type: Choose the primary type of training you are focusing on from the dropdown menu (Strength, Power, or Endurance). This helps tailor the intermediate recommendations.
  3. Click Calculate: Press the "Calculate" button. The calculator will instantly process your inputs.

How to Read Results:

  • 7 of My Body Weight Result: This shows the theoretical weight you'd need to lift to hit the elite 7x bodyweight benchmark. It serves as an aspirational target, especially for deadlifts.
  • Recommended Weight for [Focus] Focus: These values provide practical weight ranges based on your selected training type. They represent achievable targets for building strength, power, or endurance relative to your body weight.
  • Benchmark Table: This table offers a broader perspective, showing how different training goals correspond to various multipliers of your body weight.
  • Chart: The dynamic chart visually represents the calculated weights for different training focuses, allowing for easy comparison.

Decision-Making Guidance: Use the "Recommended Weight" figures as a guide for setting your training weights. If you're focusing on building maximal strength, aim for the higher end of the "Strength Focus" range. For explosive movements, use the "Power Focus" weights. For conditioning, the "Endurance Focus" weights are more appropriate. Remember, these are guidelines; listen to your body and adjust based on your progress and recovery.

Key Factors That Affect 7 of My Body Weight Results

While the calculation itself is simple multiplication, the *attainability* and *relevance* of the 7x bodyweight benchmark, and the derived training loads, are influenced by numerous factors:

  1. Exercise Specificity: As mentioned, the 7x benchmark is primarily for the deadlift. Attempting to apply it to overhead presses or bench presses is unrealistic due to biomechanics and muscle recruitment. The calculator's intermediate values are generalized but should be applied to appropriate exercises.
  2. Training Experience & Genetics: Lifters with years of dedicated training and favorable genetics will progress faster and reach higher benchmarks than beginners. The calculator provides a target, but the path to reaching it varies immensely.
  3. Training Program Design: Consistent, progressive overload, periodization, and adequate recovery are essential. Simply aiming for a high multiplier without a structured program won't yield results. Factors like volume, intensity, frequency, and exercise selection within the program are critical.
  4. Nutrition and Recovery: Muscle growth, repair, and energy levels are heavily dependent on diet and sleep. Insufficient protein intake, poor sleep quality, or inadequate calorie consumption will hinder strength development, making high benchmarks harder to achieve.
  5. Technique and Form: Perfecting lifting technique is paramount, especially for heavy lifts like the deadlift. Efficient form maximizes force production and minimizes injury risk. Poor technique can artificially inflate or deflate perceived strength and prevent progress towards benchmarks.
  6. Age and Health Status: Strength potential naturally changes with age. Recovery capacity also diminishes over time. Pre-existing injuries or health conditions can also limit the ability to train heavy and pursue high strength benchmarks safely.
  7. Body Composition: While the benchmark is relative to total body weight, the *type* of weight matters. A higher muscle mass percentage relative to fat mass generally correlates with greater strength potential.

Frequently Asked Questions (FAQ)

Q1: Is the 7x bodyweight deadlift achievable for everyone?

A: No, the 7x bodyweight deadlift is an elite-level achievement, typically reached by highly dedicated powerlifters with years of training and often favorable genetics. It's a benchmark, not a universal goal.

Q2: Can I use this calculator for squats or bench presses?

A: The "7 of my body weight" metric is almost exclusively associated with the deadlift. While the calculator provides related strength training figures, these are best applied as general guidelines for heavy compound lifts, not as direct equivalents to the 7x deadlift benchmark for other exercises.

Q3: What if my body weight fluctuates?

A: Use your current, accurate body weight for the calculation. If your weight changes significantly, recalculate to get updated target weights. Consistent body weight is also a sign of a stable training phase.

Q4: How often should I train for maximal strength?

A: Training for maximal strength (like aiming for a 7x benchmark) typically involves lower frequency (1-2 times per week for the specific lift) and higher intensity, with ample recovery between sessions. Overtraining is a significant risk.

Q5: What are the risks of training too heavy?

A: Training excessively heavy without proper preparation, technique, or recovery can lead to serious injuries (muscle tears, joint damage, spinal issues), burnout, and decreased performance. Always prioritize form and listen to your body.

Q6: Does the calculator account for my training history?

A: No, this calculator provides a theoretical benchmark and general training load recommendations based solely on your body weight and selected training type. It does not factor in your individual training history, recovery status, or specific program.

Q7: What is a more realistic strength goal for an intermediate lifter?

A: For intermediate lifters, achieving 2x to 3x bodyweight on the deadlift is often considered a significant milestone. The "Strength Focus" range calculated by this tool (typically 5x-6x bodyweight multiplier for the *benchmark*) can be adapted to set more achievable, yet challenging, goals for primary lifts.

Q8: How does nutrition impact my ability to lift heavy?

A: Adequate protein is crucial for muscle repair and growth. Sufficient calories provide the energy needed for intense workouts. Proper hydration supports performance. Deficiencies in any of these areas will directly limit your strength potential.

function validateInput(id, errorId, min, max) { var input = document.getElementById(id); var errorElement = document.getElementById(errorId); var value = parseFloat(input.value); if (isNaN(value) || input.value.trim() === "") { errorElement.textContent = "This field is required."; errorElement.classList.add('visible'); return false; } if (value max) { errorElement.textContent = "Value is too high."; errorElement.classList.add('visible'); return false; } errorElement.textContent = ""; errorElement.classList.remove('visible'); return true; } function calculateSevenOfBodyWeight() { var bodyWeightInput = document.getElementById('bodyWeight'); var trainingTypeSelect = document.getElementById('trainingType'); var resultsDiv = document.getElementById('results'); var isValidBodyWeight = validateInput('bodyWeight', 'bodyWeightError', 0); var isValidTrainingType = true; // Selects don't typically need validation for range/negative if (!isValidBodyWeight || !isValidTrainingType) { resultsDiv.classList.remove('visible'); return; } var bodyWeight = parseFloat(bodyWeightInput.value); var trainingType = trainingTypeSelect.value; var sevenOfBodyWeight = bodyWeight * 7; var strengthFocusWeight, powerFocusWeight, enduranceFocusWeight; // Define multipliers based on general strength training principles var strengthMultiplier = 5.5; // Average of 5x-6x var powerMultiplier = 3.5; // Average of 3x-4x var enduranceMultiplier = 2.0; // Average of 1.5x-2.5x strengthFocusWeight = bodyWeight * strengthMultiplier; powerFocusWeight = bodyWeight * powerMultiplier; enduranceFocusWeight = bodyWeight * enduranceMultiplier; document.getElementById('sevenOfBodyWeightResult').textContent = sevenOfBodyWeight.toFixed(1) + ' kg'; document.getElementById('strengthFocusWeight').textContent = strengthFocusWeight.toFixed(1) + ' kg'; document.getElementById('powerFocusWeight').textContent = powerFocusWeight.toFixed(1) + ' kg'; document.getElementById('enduranceFocusWeight').textContent = enduranceFocusWeight.toFixed(1) + ' kg'; // Update table document.getElementById('benchmark7x').textContent = (bodyWeight * 7.0).toFixed(1) + ' kg'; document.getElementById('benchmarkStrength').textContent = (bodyWeight * strengthMultiplier).toFixed(1) + ' kg'; document.getElementById('benchmarkPower').textContent = (bodyWeight * powerMultiplier).toFixed(1) + ' kg'; document.getElementById('benchmarkEndurance').textContent = (bodyWeight * enduranceMultiplier).toFixed(1) + ' kg'; resultsDiv.classList.add('visible'); updateChart(bodyWeight, strengthFocusWeight, powerFocusWeight, enduranceFocusWeight); } function resetCalculator() { document.getElementById('bodyWeight').value = '75'; // Sensible default document.getElementById('trainingType').value = 'strength'; // Clear errors document.getElementById('bodyWeightError').textContent = ""; document.getElementById('bodyWeightError').classList.remove('visible'); // Reset results and table document.getElementById('sevenOfBodyWeightResult').textContent = '–'; document.getElementById('strengthFocusWeight').textContent = '–'; document.getElementById('powerFocusWeight').textContent = '–'; document.getElementById('enduranceFocusWeight').textContent = '–'; document.getElementById('benchmark7x').textContent = '–'; document.getElementById('benchmarkStrength').textContent = '–'; document.getElementById('benchmarkPower').textContent = '–'; document.getElementById('benchmarkEndurance').textContent = '–'; document.getElementById('results').classList.remove('visible'); clearChart(); } function copyResults() { var resultsText = "7 of My Body Weight Calculator Results:\n\n"; resultsText += "Primary Result:\n"; resultsText += "Target Weight for 7x Bodyweight Lift: " + document.getElementById('sevenOfBodyWeightResult').textContent + "\n\n"; resultsText += "Intermediate Values:\n"; resultsText += "Recommended Weight for Strength Focus: " + document.getElementById('strengthFocusWeight').textContent + "\n"; resultsText += "Recommended Weight for Power Focus: " + document.getElementById('powerFocusWeight').textContent + "\n"; resultsText += "Recommended Weight for Endurance Focus: " + document.getElementById('enduranceFocusWeight').textContent + "\n\n"; resultsText += "Key Assumptions:\n"; resultsText += "Body Weight Used: " + document.getElementById('bodyWeight').value + " kg\n"; resultsText += "Training Type: " + document.getElementById('trainingType').options[document.getElementById('trainingType').selectedIndex].text + "\n"; try { navigator.clipboard.writeText(resultsText).then(function() { // Optionally provide user feedback, e.g., a temporary message var copyButton = document.querySelector('button.success'); var originalText = copyButton.textContent; copyButton.textContent = 'Copied!'; setTimeout(function() { copyButton.textContent = originalText; }, 2000); }).catch(function(err) { console.error('Failed to copy text: ', err); alert('Failed to copy results. Please copy manually.'); }); } catch (e) { console.error('Clipboard API not available or failed: ', e); alert('Failed to copy results. Please copy manually.'); } } // Charting Logic var myChart; // Declare chart variable globally function updateChart(bodyWeight, strengthWeight, powerWeight, enduranceWeight) { var ctx = document.getElementById('trainingLoadChart').getContext('2d'); // Destroy previous chart instance if it exists if (myChart) { myChart.destroy(); } // Define data series var labels = ['Strength Focus', 'Power Focus', 'Endurance Focus']; var dataValues = [strengthWeight, powerWeight, enduranceWeight]; var benchmarkValue = bodyWeight * 7; // The 7x benchmark // Define colors var colors = [ 'rgba(0, 74, 153, 0.7)', // Primary Blue 'rgba(40, 167, 69, 0.7)', // Success Green 'rgba(108, 117, 125, 0.7)' // Secondary Gray ]; var benchmarkColor = 'rgba(220, 53, 69, 0.7)'; // Error Red for benchmark myChart = new Chart(ctx, { type: 'bar', data: { labels: labels, datasets: [{ label: 'Calculated Training Weight (kg)', data: dataValues, backgroundColor: colors, borderColor: colors.map(color => color.replace('0.7', '1')), borderWidth: 1 }, { label: '7x Bodyweight Benchmark (kg)', data: [benchmarkValue, benchmarkValue, benchmarkValue], // Repeat benchmark for each bar type: 'line', // Use a line for the benchmark borderColor: benchmarkColor, borderWidth: 3, fill: false, pointRadius: 0 // Hide points on the line }] }, options: { responsive: true, maintainAspectRatio: true, scales: { y: { beginAtZero: true, title: { display: true, text: 'Weight (kg)' } }, x: { title: { display: true, text: 'Training Focus' } } }, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Training Load Comparison' }, tooltip: { callbacks: { label: function(context) { var label = context.dataset.label || "; if (label) { label += ': '; } if (context.parsed.y !== null) { label += context.parsed.y.toFixed(1) + ' kg'; } return label; } } } } } }); } function clearChart() { var ctx = document.getElementById('trainingLoadChart').getContext('2d'); if (myChart) { myChart.destroy(); myChart = null; // Clear the global variable } // Optionally clear canvas content if needed, though destroy usually handles it ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height); } // Initial calculation on load if default values are present document.addEventListener('DOMContentLoaded', function() { // Check if default values are set and trigger calculation if (document.getElementById('bodyWeight').value && document.getElementById('trainingType').value) { calculateSevenOfBodyWeight(); } });

Leave a Comment