We’re putting the final touches on our new badges platform. Badge issuance remains temporarily paused, but all completions are being recorded and will be fulfilled once the platform is live. Thank you for your patience.
General

General

How to round the value of an expression to a specified decimal value

    • FAQFAQ
      Participant

      The value of an expression can be rounded to a specified decimal value by using the mod() function. This is shown below where the arbitrary expression TestValue is rounded to four decimal places using the expression RoundTestValue. Note that the expression RoundTestValue will need to be modified when rounding an expression with units. LIBRARY: CEL: EXPRESSIONS: DecimalValue = 0.0001 RoundTestValue = TestValue +DecimalValue/2 – mod(TestValue+DecimalValue/2, DecimalValue) TestValue = 1.12445745 END END END