<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Creating a Display Table from Scratch in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820899#M99982</link>
    <description>&lt;P&gt;You can append to process screening but I would strongly suggest building it yourself to avoid all sorts of annoying issues&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
obj = dt &amp;lt;&amp;lt; Process Screening(
	Grouping(:Site),
	Process Variables(Eval(5 :: 132))
);

tb = Report(obj)[Table Box(1)];

tb &amp;lt;&amp;lt; Append(String Col Box("COLUMN", {"A", "B", "C", "D"}));&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 05 Dec 2024 16:53:26 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2024-12-05T16:53:26Z</dc:date>
    <item>
      <title>Creating a Display Table from Scratch</title>
      <link>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820758#M99960</link>
      <description>&lt;P&gt;Hello All,&lt;BR /&gt;&lt;BR /&gt;I am interested in making a process screening output table such as the one pasted down below. This is taken directly from the process screening platform. However, I would like to add more column or remove some, especially columns from another datatable or ones that are not in the process screening module.&lt;BR /&gt;&lt;BR /&gt;I guess one could use the display functions but since I do not have a ton of experience with those maybe if I could get the raw code for how this display table is created I could modify it to my needs. How would I be able to get the raw code?&lt;BR /&gt;&lt;BR /&gt;Or if I was to organize all of my data in a data table what would be the easiest and most modular way to then convert it into a nice display table with highlighting, borders etc.?&lt;BR /&gt;&lt;BR /&gt;Any other suggestions?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 00:36:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820758#M99960</guid>
      <dc:creator>AdditiveRange10</dc:creator>
      <dc:date>2024-12-05T00:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Display Table from Scratch</title>
      <link>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820779#M99963</link>
      <description>&lt;P&gt;Why wouldn't you just run the Process Screening Platform and then just add and delete the columns as needed.&amp;nbsp; You will not be able to use the code that generates the output since it is not generated using JSL,&amp;nbsp; The platforms in JMP are coded in a more base level language like C++.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 02:43:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820779#M99963</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-12-05T02:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Display Table from Scratch</title>
      <link>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820892#M99977</link>
      <description>&lt;P&gt;Well the ask was if I could add columns from other tables? Most likely that is not possible so then I would go the route of getting the data from multiple tables and joining/concatenating into a single table. However, I just want to save that final table in a nicer display configuration to be presented, with highlighting, borders etc. Do you have any suggestions for that?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 16:02:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820892#M99977</guid>
      <dc:creator>AdditiveRange10</dc:creator>
      <dc:date>2024-12-05T16:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Display Table from Scratch</title>
      <link>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820893#M99978</link>
      <description>&lt;P&gt;A data table can be converted into a Table Box() within a display window, and then use the features that can be modified within table boxes.&lt;/P&gt;
&lt;P&gt;Each of the cells within a data table could also be converted into text boxes and then aligned in the shape of a data table.&amp;nbsp; Font, text color, background colors, etc. can all be set.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 16:16:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820893#M99978</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-12-05T16:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Display Table from Scratch</title>
      <link>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820899#M99982</link>
      <description>&lt;P&gt;You can append to process screening but I would strongly suggest building it yourself to avoid all sorts of annoying issues&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
obj = dt &amp;lt;&amp;lt; Process Screening(
	Grouping(:Site),
	Process Variables(Eval(5 :: 132))
);

tb = Report(obj)[Table Box(1)];

tb &amp;lt;&amp;lt; Append(String Col Box("COLUMN", {"A", "B", "C", "D"}));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Dec 2024 16:53:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820899#M99982</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-12-05T16:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Display Table from Scratch</title>
      <link>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820934#M99989</link>
      <description>&lt;P&gt;Thanks. Yes I started building it myself while looking at the properties window of a sample process screening table so that I can see at least part of the structure&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AdditiveRange10_0-1733428173637.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70901i4211FDA27D622C4D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AdditiveRange10_0-1733428173637.png" alt="AdditiveRange10_0-1733428173637.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 19:49:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Creating-a-Display-Table-from-Scratch/m-p/820934#M99989</guid>
      <dc:creator>AdditiveRange10</dc:creator>
      <dc:date>2024-12-05T19:49:40Z</dc:date>
    </item>
  </channel>
</rss>

