How to properly use Number -> text

Im trying to convert an int to a string. Am I implementing this incorrectly?

I wasnt able to upload all the images but what is happening is that I have a number generator, and I’m passing its value through a conv2Text and this is the dataviewer output. Im using the default setting with the conv2text.
The number generator had pvalue set at 7

As the documentation for the “Format” property states, the Conv2Text component uses the same formatting as in the standard C specifications. My guess is your number is outputting a float, and your format property is set to the default %d which is for integers. So depending on your goal, you would either need to change the type output of the number generator, or change the format to %f for float.