<?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: How to transpose excel cells during import in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285624#M55120</link>
    <description>Can you supply a sample Excel file, and an example of what you expect the transform to end up looking like?</description>
    <pubDate>Wed, 12 Aug 2020 19:52:31 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-08-12T19:52:31Z</dc:date>
    <item>
      <title>How to transpose excel cells during import</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285620#M55119</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I was wondering if anyone else has tried this before or has any tips on how to accomplish the following issue.&lt;/P&gt;&lt;P&gt;I am looking to import data from an excel file but need to transpose the data. I would prefer not to transpose ALL of the cells in excel prior to using the Excel Wizard on JMP but rather have JMP automatically transpose my data while importing it into a JMP table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would normally manually transpose the excel cells if the data set is small, but in my current situation I don't want to waste hours transposing cells before importing the information into JMP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am pretty novice with JSL but am willing to give it a shot if it will help my case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Heather&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:17:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285620#M55119</guid>
      <dc:creator>HR</dc:creator>
      <dc:date>2023-06-10T23:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose excel cells during import</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285624#M55120</link>
      <description>Can you supply a sample Excel file, and an example of what you expect the transform to end up looking like?</description>
      <pubDate>Wed, 12 Aug 2020 19:52:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285624#M55120</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-08-12T19:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose excel cells during import</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285632#M55121</link>
      <description>&lt;P&gt;The goal is to avoid having to import the excel file into one JMP table&amp;nbsp; and have to generate a second JMP data table using table &amp;gt; transpose. I would like to just have the data transposed into one data table from the start.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-HR&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2020 20:48:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285632#M55121</guid>
      <dc:creator>HR</dc:creator>
      <dc:date>2020-08-12T20:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose excel cells during import</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285645#M55124</link>
      <description>&lt;P&gt;Here is what I think would be the most straight forward and easiest way to accomplish what you want.&amp;nbsp; It reads in the data and then transposes it without visibility to the user.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = open("path and name.xlsx",invisible);

colNames = dt &amp;lt;&amp;lt; get column names;
remove from(colNames, 1, 1 );

dtTrans =  dt &amp;lt;&amp;lt; Transpose(
	columns( colNames ),
	Label( column( 1 ) ),
	Output Table( "Transpose of Sheet1" ));
	
close( dt, nosave );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Aug 2020 21:33:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285645#M55124</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-08-12T21:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose excel cells during import</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285650#M55127</link>
      <description>&lt;P&gt;Worked like a charm, thank you so much!&lt;/P&gt;&lt;P&gt;-HR&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2020 22:34:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-transpose-excel-cells-during-import/m-p/285650#M55127</guid>
      <dc:creator>HR</dc:creator>
      <dc:date>2020-08-12T22:34:56Z</dc:date>
    </item>
  </channel>
</rss>

