Skip to content
Martin Danielsson edited this page Jul 23, 2015 · 2 revisions

The Int operator converts a string to an integer value, e.g. for use in operators needing integer parameters. This is typically used if the source columns contain numbers as strings which need to be used for calculations of sorts.

What Type
Syntax Int(s)
s string
Return type int

Example: Multiply(Int($wage), 10)

Multiplies the content of the field wage, interpreted as an integer value, by 10.

Clone this wiki locally