Log10 Function

Description:
The base-10 logarithm of a number.
This is the inverse of raising 10 to the power of a value such that:
V
= Log10( Power( 10,
V
) )
Returns:
Number
Parameter:
Parameter
Data Type
Description
1
Number
The number.
Examples:
When using functions inside a field, remember the field brackets:
{Log10(VariableName)}
Expression
Result
Log10( 34 )
1.53147891704226
Log10( Power( 10, 1.53147891704226 ) )
1.53147891704226

Related content