Skip to content

How do I perform an arithmetical product operation

This example demonstrates performing an arithmetical product operation for two or more values using "product" command. This command is similar to arithmetic production which performs multiplication on the list of numeric values provided.

In the solution shown below, you will see that multiplication operation is performed for two numbers and the result is stored into a variable. 

Solution:

# Command Target Value
Multiply the two numbers by using the product command
1 product 1199,4 result

Tips, Tricks, Gotchas & Best Practices:

  • The list of numeric values to be multiplied should be separated by a comma(,).
  • You can use the command "productAndWait" if you want to wait after the multiplication operation is performed.
  • As a best practice, it is always advisable to define the variable names without any spaces and if you want to differentiate the words, use underscores.


Feedback and Knowledge Base