cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
AT
AT
Level V

How to add a data table to web report?

I used the following example of create a project:

 

 

project = New Project();
project << Run Script(
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt << Run Script( "Bivariate" );
dt << Run Script( "Distribution" );
);

 

 

Now when I use publish, I get the web report with Distribution and Bivariate plot. How do I add data table as well? Thanks for your help.

13 REPLIES 13
AT
AT
Level V

Re: How to add a data table to web report?

Hi Jeff,

Thanks for the note. The number of rows are about 4000. I was able to create a dashboard and no issue with number of rows. Only when you want to create report out of projects you run into trouble. Thanks for all your help.

anne_sa
Level VI

Re: How to add a data table to web report?

Hello,

 

I also would like to add a data table in a web report but some of the cells are colored. Unfortunately, when I publish the journal of the table, the colors are lost. Is there a way do keep the table not truncated and with the colors?

Thanks for your help!

txnelson
Super User

Re: How to add a data table to web report?

I have been successful in doing this by creating a picture object of the data table, rather than the actual data table
Jim
anne_sa
Level VI

Re: How to add a data table to web report?

It works like a charm! Thank you very much @txnelson