Operation with 2 parameters in a single table

Good morning everyone,

I am trying to do a calculation of two parameters in the report section, but I think I am missing something in the syntax so that these two values give me a result, in this case a multiplication.

what I am using

@date_now@*@constant@
result
image

How can I perform this calculation?

regards

The @ sign is a special symbol used only in the reporting module. An expression inside two of these symbols is called a key chain expression (not related to Ignition's Expression language).

You can find more info about key chain expressions here:

And a link to the docs for the software that the reporting module was built on can be found here:
https://www.reportmill.com/support/DesDocs.html

The answer to your question (assuming date_now has a data type that supports multiplication) is this:
@date_now*constant@

3 Likes

its works! @date_now*constant@

thanks Brandon

1 Like