<?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 Excel Table Formatting in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33650#M19957</link>
    <description>&lt;P&gt;I have written jmp script to auto generate reports and save as .xlsx, but unable to perform the cell formatting such as merge cells, cell color, font type etc.&lt;/P&gt;&lt;P&gt;There was a discussion topic in this community mentioned about .xml method, however there is no further details.&lt;/P&gt;&lt;P&gt;Much appreciated if someone show me how to get it done. Thanks.&lt;/P&gt;</description>
    <pubDate>Wed, 14 Dec 2016 07:33:10 GMT</pubDate>
    <dc:creator>HP_Lau</dc:creator>
    <dc:date>2016-12-14T07:33:10Z</dc:date>
    <item>
      <title>Excel Table Formatting</title>
      <link>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33650#M19957</link>
      <description>&lt;P&gt;I have written jmp script to auto generate reports and save as .xlsx, but unable to perform the cell formatting such as merge cells, cell color, font type etc.&lt;/P&gt;&lt;P&gt;There was a discussion topic in this community mentioned about .xml method, however there is no further details.&lt;/P&gt;&lt;P&gt;Much appreciated if someone show me how to get it done. Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Dec 2016 07:33:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33650#M19957</guid>
      <dc:creator>HP_Lau</dc:creator>
      <dc:date>2016-12-14T07:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Table Formatting</title>
      <link>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33655#M19962</link>
      <description>&lt;P&gt;To get exact formatting in an Excel spreadsheet from JMP here's one way to do it using xml output:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Create the desired Excel spreadsheet, with your merged columns, colors, etc. exactly in the format you need.&lt;/LI&gt;
&lt;LI&gt;Save As a .XML file using the format "XML Spreadsheet 2003 (*.xml)&lt;/LI&gt;
&lt;LI&gt;Now comes the hard part - reverse engineer this same xml file using JSL. &amp;nbsp;Substitute data from your JMP dataset into the xml file and you'll have nicely formatted output.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Dec 2016 15:01:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33655#M19962</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2016-12-14T15:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Table Formatting</title>
      <link>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33667#M19970</link>
      <description>&lt;P&gt;You could run the JMP script using VBA, then write all the formatting stuff after in VBA. &amp;nbsp;And just to play devil's advocate, is there a reason you&amp;nbsp;&lt;EM&gt;need&lt;/EM&gt; to put it into excel? &amp;nbsp;JMP has a lot of formatting options (I really hate VBA). &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Dec 2016 18:30:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33667#M19970</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2016-12-14T18:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Table Formatting</title>
      <link>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33699#M19992</link>
      <description>I don't like VBA either, but I have no choice as the report format is out of my control.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Could I use jsl command to call/activate VBA instruction instead? I want the main user interface to be JMP instead of Excel Macro.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The report has non-standard header (it is not a real header but multiple rows of information before the data table, and lesser columns than data table).&lt;BR /&gt;&lt;BR /&gt;- It force me to convert all columns to "Character" due to the non-header rows on top.&lt;BR /&gt;&lt;BR /&gt;- When save as Excel, the option for "Export Table Headers" become unavailable (which works for .txt case).&lt;BR /&gt;&lt;BR /&gt;- Then jsl added a row name as "Column 1", "Column 2", ... on top of everything.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2016 02:02:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33699#M19992</guid>
      <dc:creator>HP_Lau</dc:creator>
      <dc:date>2016-12-15T02:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Table Formatting</title>
      <link>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33709#M19995</link>
      <description>&lt;P&gt;For the import operation, if you have JMP 11 or newer then I would first open the file using the Excel Wizard so that you can avoid importing the top lines that contain the character data. &amp;nbsp;That way the columns won't get turned into Character columns. &amp;nbsp;Then you can take the Source script out of the resulting table and use that within your JSL script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as saving goes, JMP will always save the column headers when saving as Excel. &amp;nbsp;There is no option to avoid that. &amp;nbsp;JMP doesn't really have a facility to use VBA or to drive other programs outside of JMP. &amp;nbsp;It does have an Automation interface to be driven by other programs like VBA in Excel. &amp;nbsp;You could write a VB program that drives both Excel and JMP and acts as a controller for the two of them, but that is getting more complicated. &amp;nbsp;In that scenario, you could have JMP open the file, and then use VB/VBA to retrieve the data and again us VB/VBA to populate the data in the Excel table.&lt;BR /&gt;&lt;BR /&gt;Brian Corcoran&lt;/P&gt;
&lt;P&gt;JMP Development&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2016 13:39:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/33709#M19995</guid>
      <dc:creator>briancorcoran</dc:creator>
      <dc:date>2016-12-15T13:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Excel Table Formatting</title>
      <link>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/68958#M34962</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Even I was stuck with a similar issue. I changed the data type of the column to a character and I could save the formating in .xlsx file. Hope this helps.&lt;/P&gt;&lt;P&gt;-Sri&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2018 19:15:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Excel-Table-Formatting/m-p/68958#M34962</guid>
      <dc:creator>gangasani95</dc:creator>
      <dc:date>2018-08-20T19:15:12Z</dc:date>
    </item>
  </channel>
</rss>

