![]() |
How to Create BMI Calculator in Google FormsTired of those confusing weight charts and old-fashioned BMI calculators? Want a quick and easy way to see your Body Mass Index (BMI) on your phone? We got you covered! This trick uses Google Forms and Sheets to create a super simple BMI calculator. No fancy machines or confusing numbers – just a quick form, a few taps, and there you have it – your personal BMI! Ready to ditch the mystery and check your BMI in a fun new way? Let’s get started! What is BMI?The Body Mass Index (BMI) is Someone’s weight and height ratio. This number is a rough approximation of the person’s fat percentage. Since the score is proportional to fat mass, a higher number indicates that the individual has a higher fat mass. A person’s Underweight, Normal Weight, or Overweight status is determined by their Body Mass Index (BMI). Variables like age and geographic region determine the BMI range.
How to Create a Google Form for BMI CalculationTo create a BMI calculator using Google Forms, the process is divided into three parts as follows:
Creating a Google Form for BMI CalculationStep 1: Open Google on your default web browserTurn on your default web browser and search for Google. ![]() Open Google on your default web browser Step 2: Open Google FormsFrom the nine dots menu bar of Google’s Home page. Select Google Forms from the list. ![]() Open Google Forms Step 3: Click “Blank Form” to create a new formOn the Forms home page, select “Blank Form” to create a new form to collect the data. ![]() Click “Blank Form” to create a new form Step 4: Add necessary questions and customize the formAdd the relevant questions per your requirements in the form and mark the required mandatory questions. ![]() Add necessary questions and customize the form
Step 5: Click on the “Response tab”Once the form has been customized, select the “Response tab” option at the top. ![]() Click on the “Response tab” Step 6: Link form Submissions to a Google SheetSelect the “Link to Sheets” option in the right corner of the screen. ![]() Select “Link to Sheets”
![]() A new spreadsheet with all the necessary details is created Establishing the BMI calculatorStep 7: Select an empty column for BMI calculation in the sheetSelect any blank column in the Google Sheets to calculate the BMI for each form submission. ![]() Select an empty column for BMI calculation in the sheet Step 8: Name the selected columnGive a suitable title to the selected column. ![]() Name the selected column Step 9: Enter the formula in the first rowIn the very first row, where the patient entries are filled, enter the BMI formula to calculate each patient’s BMI. In this case, Row 2 is the first line of data, G is the weight column, and H is the height column.
![]() Enter the formula in the first row
BMI Calculations in Google SheetsWe use Google Sheets to make the following calculations to determine the user’s body mass index (BMI). Age of the respondentThe user’s DOB is a mandatory field on the form. The DATEDIF function tells us the age the person is in years. =MAP(C:C, LAMBDA(c, IF(ROW(c)=1, “Age”, IF(ISDATE(c), ROUND(DATEDIF(c, TODAY(), “Y”), 0),)))) BMI Score (kg/m²)Users are asked to input their height and weight on the form. Every response on the form has its BMI calculated using the MAP function. =MAP(E:E,F:F, LAMBDA(ht, wt, IF(ROW(wt)=1, “BMI”, IF(AND(ISNUMBER(wt),ISNUMBER(ht)), ROUND(wt/(ht/100)^2,2),)))) BMI CategoryWe use the array function to determine the BMI category. =ARRAYFORMULA(IF(ROW(J:J)=1, “BMI Category”, IF(ISNUMBER(J:J), IF(J:J < 18.5, “Underweight”, IF(J:J < 25, “Normal weight”, IF(J:J < 30, “Overweight”, “Obese”))),))) ConclusionBody mass index (BMI) data is important for both people and healthcare professionals to understand in order to assess overall health, determine food needs, and set health and exercise goals. Automating the BMI calculation will free up clinicians to spend more time chatting with patients and less time doing calculations. As a result, individuals will be better able to comprehend and monitor their own health. While Google Forms for BMI is an excellent extension of the Google suite of products, setting it up is more work than needed. FAQS on BMI CalculatorHow to create a BMI?
How to calculate BMI on Google Forms?
How to create a BMI chart in Excel?
|
Reffered: https://www.geeksforgeeks.org
Google Workspace |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 15 |