Ah, you want your text to be center vertically!!!
The idea is to know in advance the height of your text, which is not possible unless you get into wild calculation.
However there is a trick to it.
To achieve what you want is to execute your
Text object twice.
Once, outside of the printing area just to get the actual height of it once produce with the data. In that object, tick the box
Dynamic height that you'll find under the
Basic Attribute of the object. Then store that height into a global variable, in the
Press Talk After. Like this:
&globalVariable := &height
Now that you know what will be the height of your
Text object, you can, in the second
Text object that is shown in your printing area, in its
PressTalk Before move your object up by half the size of it:
translate(0,-1*(&GlobalVariable1 / 2))