Reference Updated April 8, 2026

LN

Category: Math & numeric

Overview

DescriptionReturns the natural logarithm of a number (logarithm with base e ~2.718), while retaining all Dimensions. Use when you need a natural logarithm transformation for positive numeric values.
SyntaxLN('Node')
ParameterNode: Input node, specified using the node name in single quotes (e.g. 'Profit')

Examples

Natural logarithm of integer and decimal values

This example shows the natural logarithm computed for a node with integer and decimal values.

Input node: A

YearValue
20252
20263
20274.5

Formula: LN('A')

Year→ LN Result
20250.69
20261.10
20271.50

FunctionWhen to use instead
LOGWhen you need a logarithm with a specific base instead of the natural logarithm.
EXPWhen you need exponentiation with base e, or the inverse operation of LN.
Was this page helpful?