How do I use mathematical formulas code?

How do I use mathematical formulas?
want the result of multiplication
image

Hi @Panupol_Sonnuam, I can see two issues here:

  1. It seems you are trying to multiply strings here which wouldn’t work. So you need to make sure you are performing your calculation using numbers.
  2. Your input is a mix of both expressions (between the curly braces {{ and }}) and plain text (outside of the curly braces. To use any JS operators, you would need to make sure everything is enclosed by curly braces. So if you want to calculate 13 times 15 for example that could work like so using an expression:

Result:

Hope this helps!

Thank You!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.