INTEGER Function

The INTEGER function converts the text value you specify to a number value by scanning the text from left to right for a contiguous set of digits, stopping when it encounters a character that is not a digit; it then returns the contiguous digits it encounters as a number value. If no digits precede the first non-digit character, or if the text is empty, the function returns zero.

Function name INTEGER
Usage model INTEGER ( t:TEXT )
Parameters This function requires you to replace only one parameter:

t: TEXT

The function converts the text value to a number value.
Result A number value.

Examples

The following returns 12 because a “:” is not a digit so the scanning stops at that point.

INTEGER("12:00")

If Call Time has a value of "12:30", the following returns 12 because “:” is not a number so the scanning stops at that point.

INTEGER(Call Time)

If Call Time has a value of "12:30" and you want to retrieve the 30 as a number value, you can use the INTEGER function in conjunction with the MID and POSITION functions:

INTEGER(MID("12:30", 1 + POSITION("12:30", ":"), 2))

The result from POSITION(“12:30”, “:”) is 3. Adding 1 to 3, making it 4. So MID function begins scanning at the fourth position and finds the last two characters in the text value. The INTEGER function then converts “30” to the number value 30.

Download

After you download the example template, you can import the template to any workspace to see this example code in action.