<?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 to word's table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244729#M48195</link>
    <description>Sorry I might need more help. I cannot understand those commands. Can you explain simpler ... using "clicks" not commands?</description>
    <pubDate>Fri, 31 Jan 2020 21:16:20 GMT</pubDate>
    <dc:creator>Batista</dc:creator>
    <dc:date>2020-01-31T21:16:20Z</dc:date>
    <item>
      <title>Tabulate to word's table</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244518#M48172</link>
      <description>&lt;P&gt;Hi! I have several table that was build with tabulate and they a quite big. Is there a way I can transfer to Word's as a table, also with the possibility to edit them? Because when I save them as word file they kind of need to adjustments. Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2020 16:24:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244518#M48172</guid>
      <dc:creator>Batista</dc:creator>
      <dc:date>2020-01-31T16:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate to word's table</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244550#M48183</link>
      <description>&lt;P&gt;If you place all of your Tabulate output into a new window, you can save that window as a Word output, and each of the Tabulate tables will end up as Word Tables that you can manipulate in Word.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// A very simple example
Names Default To Here( 1 );&lt;BR /&gt;open("$SAMPLE_DATA/big class.jmp");
nw = New Window( "Example",
	tt = Tabulate(
		Show Control Panel( 0 ),
		Add Table(
			Column Table( Grouping Columns( :sex ) ),
			Row Table( Grouping Columns( :age ) )
		)
	),
	tt = Tabulate(
		Show Control Panel( 0 ),
		Add Table(
			Column Table( Grouping Columns( :sex ) ),
			Row Table( Grouping Columns( :age ) )
		)
	)
);
nw &amp;lt;&amp;lt; save msword( "$TEMP/tab.doc" );
Open( "$TEMP/tab.doc" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2020 19:49:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244550#M48183</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-01-31T19:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate to word's table</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244641#M48188</link>
      <description>&lt;P&gt;Hi, thanks for the reply. Can you explain me again how can I do that. I could not understand the commands that you use : (&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2020 19:35:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244641#M48188</guid>
      <dc:creator>Batista</dc:creator>
      <dc:date>2020-01-31T19:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate to word's table</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244667#M48190</link>
      <description>&lt;P&gt;Hopefully the below annotation to the script will help you understand what I did&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// A very simple example
Names Default To Here( 1 );

// Open the data table
dt = open("$SAMPLE_DATA/big class.jmp");

// Create a new display window
nw = New Window( "Example",
	
	// Create the required Tabulate Table using JSL
	// This JSL is taken directly from the interactive
	// Tabulate Platform by clicking on the red triangle
	// for the Tabulate, and selecting "Save Script"
	tt = Tabulate(
		Show Control Panel( 0 ),
		Add Table(
			Column Table( Grouping Columns( :sex ) ),
			Row Table( Grouping Columns( :age ) )
		)
	),
	// This is the same tablulate as above, but it can be
	// any additional tabulate JSL you want
	tt = Tabulate(
		Show Control Panel( 0 ),
		Add Table(
			Column Table( Grouping Columns( :sex ) ),
			Row Table( Grouping Columns( :age ) )
		)
	)
	// You can have as many tabulate entries as desired
	// added to this script
);

// Save the output to MSWord
nw &amp;lt;&amp;lt; save msword( "$TEMP/tab.doc" );

// Open up the just saved .doc file
Open( "$TEMP/tab.doc" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 Jan 2020 19:57:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244667#M48190</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-01-31T19:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate to word's table</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244729#M48195</link>
      <description>Sorry I might need more help. I cannot understand those commands. Can you explain simpler ... using "clicks" not commands?</description>
      <pubDate>Fri, 31 Jan 2020 21:16:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244729#M48195</guid>
      <dc:creator>Batista</dc:creator>
      <dc:date>2020-01-31T21:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate to word's table</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244748#M48197</link>
      <description>&lt;P&gt;1. Create your Tabulate output as you always have done.&lt;/P&gt;
&lt;P&gt;2. Click on the "Done" button in the output to get rid of the Control Panel&lt;/P&gt;
&lt;P&gt;3. Save the Script to a Script Window, by clicking on the red triangle and selecting&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; Save Script==&amp;gt;To Script Window&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="toscriptwindow.PNG" style="width: 642px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21473i64220D7209E96507/image-size/large?v=v2&amp;amp;px=999" role="button" title="toscriptwindow.PNG" alt="toscriptwindow.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="toscriptwindow2.PNG" style="width: 508px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21474i135D33DB527A4530/image-size/large?v=v2&amp;amp;px=999" role="button" title="toscriptwindow2.PNG" alt="toscriptwindow2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;4.&amp;nbsp; Add the following lines to the top of the script window&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
nw = New Window( "Example",&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="toscriptwindow3.PNG" style="width: 527px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21475i39108068B75F9590/image-size/large?v=v2&amp;amp;px=999" role="button" title="toscriptwindow3.PNG" alt="toscriptwindow3.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;5. Add the following lines to the bottom of the script&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;);
nw &amp;lt;&amp;lt; save msword( "$TEMP/tab.doc" );
Open( "$TEMP/tab.doc" );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="toscriptwindow4.PNG" style="width: 492px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21476iABF16A5D6CD85615/image-size/large?v=v2&amp;amp;px=999" role="button" title="toscriptwindow4.PNG" alt="toscriptwindow4.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;6. Change the location on lines 11 and 12&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; "$TEMP/tab.doc"&lt;/P&gt;
&lt;P&gt;to where you want to save your MSWord Document to&lt;/P&gt;
&lt;P&gt;7. Run the script by clicking on the icon with the green triangle in it at the top of the Script Window&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="toscriptwindow5.PNG" style="width: 116px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21477i3F023736210B431C/image-size/large?v=v2&amp;amp;px=999" role="button" title="toscriptwindow5.PNG" alt="toscriptwindow5.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will save your Tabulate output to a Word Document.&amp;nbsp; If you want to save multiple Tabulates at the same time, take a look at my previous example, and just add in the different scripts one after another, separated by a comma as in the example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2020 21:57:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244748#M48197</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-01-31T21:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Tabulate to word's table</title>
      <link>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244752#M48198</link>
      <description>Fantastic!!!! thanks !</description>
      <pubDate>Fri, 31 Jan 2020 22:13:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Tabulate-to-word-s-table/m-p/244752#M48198</guid>
      <dc:creator>Batista</dc:creator>
      <dc:date>2020-01-31T22:13:46Z</dc:date>
    </item>
  </channel>
</rss>

