Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Supported functions for the Expression components

Learn about the various functions for the Expression components in RPA Desktop Design Studio.

NameDescriptionUsageResult
AbsReturns the absolute value of a specified number.Abs1
AcosReturns the angle whose cosine is the specified number.Acos(1)
AsinReturns the angle whose sine is the specified number.Asin(0)0
AtanReturns the angle whose tangent is the specified number.Atan(0)0
CeilingReturns the smallest integer that is greater than or equal to the specified number.Ceiling(1.5)2
CosReturns the cosine of the specified angle.Cos(0)1
ExpReturns raised to the specified power.Exp(0)1
FloorReturns the largest integer less than or equal to the specified number.Floor(1.5)1
IEEERemainderReturns the remainder resulting from the division of a specified number by another specified number.IEEERemainder(3, 2)-1
LogReturns the logarithm of a specified number.Log(1, 10)0
Log10Returns the base 10 logarithm of a specified number.Log10(1)0
MaxReturns the larger of two specified numbers.Max(1, 2)2
MinReturns the smaller of two numbers.Min(1, 2)1
PowReturns a specified number raised to the specified power.Pow(3, 2)9
RoundRounds a value to the nearest integer or specified number of decimal places. The mid number behavior can be changed by using EvaluateOption.RoundAwayFromZero during the construction of the Expression object.Round(3.222, 2)3.22
SignReturns a value indicating the sign of a number.Sign(-10)-1
SinReturns the sine of the specified angle.Sin(0)0
SqrtReturns the square root of a specified number.Sqrt(4)2
TanReturns the tangent of the specified angle.Tan(0)0
TruncateCalculates the integral part of a number.Truncate(1.7)1
NCalcThe NCalc is a mathematical expressions evaluator in .NET. With this function, you can parse any expression and evaluate its result. This includes static or dynamic parameters, or custom functions.For more information, see https://github.com/ncalc/ncalc/wiki 

Parent Topic:General