<?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: Tabulate configuration support in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Tabulate-configuration-support/m-p/266032#M51808</link>
    <description>&lt;P&gt;I am assuming that you want to color certain cells within the output from the Tablulate Platform.&amp;nbsp; Tabulate does not have coloring capabilities.&amp;nbsp; To handle this, you would have to do something like "&amp;lt;&amp;lt; make into data table", to create a data table and then color the cells in the data table.&lt;/P&gt;</description>
    <pubDate>Tue, 12 May 2020 11:21:12 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-05-12T11:21:12Z</dc:date>
    <item>
      <title>Tabulate configuration support</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-configuration-support/m-p/265676#M51736</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;I'm trying to create new score card for our group,&lt;/P&gt;&lt;P&gt;the score card seems to work great, I just wanted to add the option for the user to have only the first grouping columns (:owner), and if he press on a relevant button then the net grouping column will appear (:buckets), is their an option to do it?&lt;/P&gt;&lt;P&gt;also, it seems that the ROUND() function does not work in this setting, any other option?&lt;/P&gt;&lt;P&gt;thanks for the support!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Tabulate(
FP = "mm";
dt_all = Open( FP || "\mm.csv", invisible );
dt_all:supplier_ww &amp;lt;&amp;lt; Data Type( Character );
 Change Item Label(
Grouping Columns( :buckets( "All" ), "All" ),
Grouping Columns( :supplier_ww( "All" ), "All" ),
Grouping Columns( :main_route( "All" ), "All" ),
Grouping Columns( :test_name( "All" ), "All" ),
Grouping Columns( :supplier_chamber( "All" ), "All" )
);,
Show Control Panel( 0 ),
Order by count of grouping columns( 0 ),
 
Add Table(
Column Table(
Grouping Columns( :supplier_ww, :chart_type ),
Add Aggregate Statistics( :supplier_ww, :chart_type ),
Statistics( Mean ),
Analysis Columns( Transform Column( "score", Formula(round( (:Total_Good_Chamber / :Total_Wfr_Chamber),2 ) ) ) )
),
 Row Table(
Grouping Columns( :owner, :buckets, :main_route, :test_name, :supplier_chamber ),
Add Aggregate Statistics( :owner, :buckets, :main_route, :test_name, :supplier_chamber )
 )
),
Local Data Filter(
Conditional,
 Add Filter(
columns( :owner, :chart_type, :supplier_ww, :buckets, :main_route, :test_name, :supplier_chamber ),
Display( :owner, Size( 93, 442 ), Check Box Display ),
Display( :chart_type, Size( 98, 82 ), Check Box Display ),
Display( :supplier_ww, Size( 93, 442 ), Check Box Display ),
Display( :buckets, Size( 202, 962 ), Check Box Display ),
Display( :main_route, Size( 110, 1282 ), Check Box Display ),
Display( :test_name, Size( 171, 2582 ), Check Box Display ),
Display( :supplier_chamber, Size( 157, 2822 ), Check Box Display )
 )
)
)
　

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 May 2020 10:36:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-configuration-support/m-p/265676#M51736</guid>
      <dc:creator>Hamal22</dc:creator>
      <dc:date>2020-05-11T10:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate configuration support</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-configuration-support/m-p/265745#M51759</link>
      <description>&lt;P&gt;There is not an option to do directly what you are asking to do, however, by using a little JSL, I think you can get done what you want.&amp;nbsp; Below is a simple example that should allow you go move towards your solution.&amp;nbsp; It allows the user to push a button on a Tablulate, to force a display change&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );


nw = New Window( "Tabulate",
	hlb = H List Box(
		bb = Button Box( "Push to See Ages",
			If( bb &amp;lt;&amp;lt; get button name == "Push to See Ages",
				tab &amp;lt;&amp;lt; delete;
				hlb &amp;lt;&amp;lt; append(
					tab = Tabulate(
						Show Control Panel( 0 ),
						Add Table(
							Column Table( Analysis Columns( :height ) ),
							Row Table( Grouping Columns( :sex, :age ) )
						)
					)
				);
				bb &amp;lt;&amp;lt; set button name( "Push to Remove Ages" );
			,
				tab &amp;lt;&amp;lt; delete;
				hlb &amp;lt;&amp;lt; append(
					tab = Tabulate(
						Show Control Panel( 0 ),
						Add Table(
							Column Table( Analysis Columns( :height ) ),
							Row Table( Grouping Columns( :sex ) )
						)
					)
				);
				bb &amp;lt;&amp;lt; set button name( "Push to See Ages" );
			)
		),
		tab = Tabulate(
			Show Control Panel( 0 ),
			Add Table( Column Table( Analysis Columns( :height ) ), Row Table( Grouping Columns( :sex ) ) )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 May 2020 14:19:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-configuration-support/m-p/265745#M51759</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-05-11T14:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate configuration support</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-configuration-support/m-p/266013#M51804</link>
      <description>&lt;P&gt;thanks for the support, it works.&lt;/P&gt;&lt;P&gt;can you please advice on a way to color the result per specific values?&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2020 10:21:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-configuration-support/m-p/266013#M51804</guid>
      <dc:creator>Hamal22</dc:creator>
      <dc:date>2020-05-12T10:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate configuration support</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-configuration-support/m-p/266032#M51808</link>
      <description>&lt;P&gt;I am assuming that you want to color certain cells within the output from the Tablulate Platform.&amp;nbsp; Tabulate does not have coloring capabilities.&amp;nbsp; To handle this, you would have to do something like "&amp;lt;&amp;lt; make into data table", to create a data table and then color the cells in the data table.&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2020 11:21:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-configuration-support/m-p/266032#M51808</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-05-12T11:21:12Z</dc:date>
    </item>
  </channel>
</rss>

