val()
val converts a string into a number. For example, this function can be used to sort numerically by the values in an additional text field.
val([ATF1]) - can be used for numerical sorting by ATF1
val("3")<val("20") - returns 1 (true)
"3"<"20" - returns 0 (false due to text comparison)