Portfolio123 uses different ways to access data points. The two primary ways of doing this are factors and functions. The difference between them is that functions take parameters, while factors do not.
For example, consider the most recent trailing-12 month sales figure can be accessed using this factor:
SalesTTM
You can use directly in a rule:
SalesTTM>SalesPTM
(SalesPTM is the prior 12-months figure.)
The most recent trailing-12 month sales can also be accessed with a function:
Sales(0,TTM)
The zero means the most recent figure, and the TTM means trailing 12-months. That function, with those parameters, will always be equal to the factor form:
SalesTTM=Sales(0,TTM)
Why do we do this? Sometimes it's easier to use a factor. Learn it once, use it forever.
Sometimes it's necessary to use a function: There is no factor for the sales as it stood 16 quarters ago, for example. (And honestly, learning the functions isn't much more work than learning the factors.)