Convert String to Numeric and Vice Versa

Is there a function in Navision Attain 3.10 which can achieve this purpose? For example I want to convert a “1” to integer 1. The VAL function in other development languages is the closest of what I am asking for? If not, is there a workaround? Sid

EVALUATE(numeric,string) converts a string to a numeric. string := FORMAT(numeric) converts a numeric to a string. Cheers, John

A slight correction: 1. Evaluate converts a text to the data type of the variable provided 2. Format converts any data type to text. Cristi