Logic Syntax
This is a short list of the most commonly used functions.
These functions can be used in any logic field in CheckFirst.
Functions marked with * are also available in an operator format.
Function name
Description
Function
Example
Round - Ceiling
Round a value towards plus infinity. If x is complex, both real and imaginary parts are rounded towards plus infinity.
ceil(N1)
Mode
Computes the mode of a set of numbers or a list with values(numbers or characters).
mode(N1,N2,N3)
Standard deviation
Compute the standard deviation of a matrix or a list with values.
std(N1,N2,N3)
If/Else
Executes an action if a condition is met (true) and another action if that condition is not met (false).
ifelse(conditions,then,else...)
ifelse((O1>1) and (O2>1),true,false)
ifelse(O1>
Count if
Count the number of elements that fulfil a condition.
countif([Range],condition)
countif([O1,O2,O3], "Correct")
Round
Round a number x to n decimal place
round(x,n)
round(O2,3)
round the numeric output of logic O2 to 3 decimal places.
View the full logic syntax list accepted by CheckFirst
Last updated
Was this helpful?