# Integrated table viewer questions

**URL:** https://discourse.julialang.org/t/integrated-table-viewer-questions/72187
**Category:** VS Code
**Created:** [November 28, 2021, 5:58am UTC](https://discourse.julialang.org/t/integrated-table-viewer-questions/72187 "2021-11-28T05:58:06Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![PeteS](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/petes/32/8111_2.png) [@PeteS](https://discourse.julialang.org/u/PeteS)
#### Post date: [November 28, 2021, 5:58am UTC](https://discourse.julialang.org/t/integrated-table-viewer-questions/72187/1 "2021-11-28T05:58:06Z")

</div>

The integrated table viewer is great, many thanks to those involved. A couple of queries.

I invoke it with `vscodedisplay(mytable, "mytitle")` and the tab reads **Julia Table: mytitle**. Is there any way I can remove/replace the **Julia Table:** text? My reasoning is just to save some real estate when using long titles.

Is there any way to add text in the body of the tab itself? Such as a description of the table when presenting results.

How does one perform formatting of the columns? I have numeric data, columns have different decimal place requirements. If I use `round(myval, digits=2)` then the trailing zeros are omitted, i.e. **2** is displayed rather than **2.00**. I do not want to create formatted strings as I then lose the sorting feature of the table.
