Hi Dojo,
How to do the math on two parameters?
For example, I got a value from param A = 10 and param B = 25, I want to divide them by 3 and show the result as param C hence I can display it.
Hi Greisen,
As parameter C would be considered a retrieved/custom parameter, filling it up using a QAction seems to be the way to go about it. with the triggers being param A and B.
In the Qaction, you can get param A and B. perform your arithmetic operations and set it onto parameter c.
Regards,
Hi Frans,
Thanks for your input, I will give it a try.
Regards,
If you want to monitor and/or trend your parameter 'C' and/or display it between the other parameters on your Data display page in Cube or Monitoring app, then the quick action approach is the best solution for now.
In case you only want to display 'C' in a low code app or dashboard, you can also just create a query and use a custom operator to do the math (still in soft launch 'GenericInterface': Overview of soft-launch options | DataMiner Docs, so no official documentation available yet, feel free to ask for more details in case you want to explore this).
Oh I forgot, what I want to achieve was C = ((A+B)/3)