You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.