Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @ahh_wang

    The equation would be:

    
    (fieldname10/(fieldname2*12+fieldname9))*703
    

    Best regards.

    Thread Starter ahh_wang

    (@ahh_wang)

    Heya! Thank you for your quick reply! actually that is giving me an incorrect BMI.

    I need the height in inches which is the (fieldname2*12+fieldname9) x2

    I tried this formula below but it doesn’t work ??

    (fieldname10/((fieldname2*12+fieldname9)(fieldname2*12+fieldname9)))*703

    Plugin Author codepeople

    (@codepeople)

    Hello @ahh_wang

    There is a parser error in your equation, you have forgotten the multiplication operator “*”

    Your equation would be:

    
    (fieldname10/((fieldname2*12+fieldname9)*(fieldname2*12+fieldname9)))*703
    

    However, it can be simplified using the POW operation:

    
    (fieldname10/POW(fieldname2*12+fieldname9,2))*703
    

    Best regards.

    Thread Starter ahh_wang

    (@ahh_wang)

    Perfecto! That worked! Thank you!!!!!!!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Body Mass Index Calculation’ is closed to new replies.