Skip to main content
Solved

How can I calculate simple multiplications of 2 attributes and create a new column with the results?

  • March 2, 2020
  • 2 replies
  • 500 views

Hey, I want to calculate values from 2 columns and get the results into a new column. Its only a multiplication: values of column a * values of column b = values in new column. Does anyone know how i could do this?

Best answer by jdh

In the ExpressionEvaluator or through "Open Arithmetic Editor" in the AttributeCreator/AttributeManager you would put

@Value(col_a) * @Value(col_b)

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

jdh
Contributor
Forum|alt.badge.img+37
  • Contributor
  • 2002 replies
  • Best Answer
  • March 2, 2020

In the ExpressionEvaluator or through "Open Arithmetic Editor" in the AttributeCreator/AttributeManager you would put

@Value(col_a) * @Value(col_b)


  • Author
  • 6 replies
  • March 4, 2020

In the ExpressionEvaluator or through "Open Arithmetic Editor" in the AttributeCreator/AttributeManager you would put

@Value(col_a) * @Value(col_b)

Thank you!