RESOLVED: Off center textTOP for text from table DAT

I want to refer a cell in table from text TOP, but it looks off center.
It looks center when I use text TOP with textDat and direct input.

Windows 64-Bit Build 2018.20100

When referencing a cell in a table try this expression instead:

op('target_table')[row, column]

Or you can use the DAT specification in the text TOP. Take a look here:

The reason for this is that in a Table DAT every cell is appended by a tab and every row is appended by a new line.

For example, try len(op('table1').text)
The result will be 5 for a Table DAT with ‘who’ in it, not 3 as you would get in a Text DAT.

Thank you guys!
I understood. Sorry, this isn’t a bug.