Pulling timestamp from a table

I have a table created from an SQL query. The columns of the table are bound to properties and use this expression.(toFloat({Root Container.Table 8.data}[0,1])) This allows me to use the numeric data. My problem is that I need to get the time stamp from the first location of the table and I’m not sure of the function or syntax.

Thanks
Henry

To get the timestamp of the first location you just do the following:{Root Container.Table 8.data}[0,"t_stamp"]This gets the first row’s timestamp column. You can bind that to a date data type or you can cast it to a date.