Inserting a formula

Hi there I would like to insert a formula to calculate RER
30 x (body weight in kilograms) + 70 = kcal
Thank you

1 Like

@Miranda_Oosthuizen try something like this:

Body weight in kilograms: {formtext: default=65; name=bwkg}

{=30*bwkg+70}

If you need to control the order of operations in the formula, use parenthesis, e.g. {=(30*bwkg)+70} or {=30*(bwkg+70)}