Data Type Problem

I am new to C/AL but had tried for C++ before.

I am currently handling a variable that are composite by two integer and one code, how can I convert the integer into code/txt first in order to merge them together?

for example, two global integer called gint1 and gint2 and code is gcode and the formation would be “gint1 + gcode + gint2”

Try

Format(“gint1”) + gcode + Format(“gint2”)

It works! thank you, I can’t just catch the keyword to find in Help manual…
Thanks a lot

Welcome to DUG…

Please verify the post which solved your problem…