<?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 Import of 3 sheets from the same Excel file in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Import-of-3-sheets-from-the-same-Excel-file/m-p/735393#M91665</link>
    <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I would like to import 3 sheets from the same Excel file in JMP.&lt;/P&gt;&lt;P&gt;My Excel fil is encrypted with a password.&lt;/P&gt;&lt;P&gt;If I import the 3 sheets (AAA, BBB, and CCC) with the following code (written 3 times), I need to write 3 times the password:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open(
      "/P:/XXX/TEMPLATE.xlsx",
      Worksheets( "AAA" ),
      Use for all sheets( 1 ),
      Concatenate Worksheets( 0 ),
      Create Concatenation Column( 0 ),
      Worksheet Settings(
             1,
             Has Column Headers( 1 ),
             Number of Rows in Headers( 1 ),
             Headers Start on Row( 1 ),
             Data Starts on Row( 2 ),
             Data Starts on Column( 1 ),
             Data Ends on Row( 0 ),
             Data Ends on Column( 0 ),
             Replicated Spanned Rows( 1 ),
             Replicated Spanned Headers( 0 ),
             Suppress Hidden Rows( 1 ),
             Suppress Hidden Columns( 1 ),
             Suppress Empty Columns( 1 ),
             Treat as Hierarchy( 0 ),
             Multiple Series Stack( 0 ),
             Import Cell Colors( 0 ),
             Limit Column Detect( 0 ),
             Column Separator String( "-" )
      )
) ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there a way to import the 3 Excel sheet (AAA, BBB, CCC) from the same Excel file without opening the Excel file each time ?&lt;/P&gt;&lt;P&gt;Thanks a lot for your answer,&lt;/P&gt;&lt;P&gt;Sébastien&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Mar 2024 16:07:20 GMT</pubDate>
    <dc:creator>Sebastienlg</dc:creator>
    <dc:date>2024-03-18T16:07:20Z</dc:date>
    <item>
      <title>Import of 3 sheets from the same Excel file</title>
      <link>https://community.jmp.com/t5/Discussions/Import-of-3-sheets-from-the-same-Excel-file/m-p/735393#M91665</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I would like to import 3 sheets from the same Excel file in JMP.&lt;/P&gt;&lt;P&gt;My Excel fil is encrypted with a password.&lt;/P&gt;&lt;P&gt;If I import the 3 sheets (AAA, BBB, and CCC) with the following code (written 3 times), I need to write 3 times the password:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open(
      "/P:/XXX/TEMPLATE.xlsx",
      Worksheets( "AAA" ),
      Use for all sheets( 1 ),
      Concatenate Worksheets( 0 ),
      Create Concatenation Column( 0 ),
      Worksheet Settings(
             1,
             Has Column Headers( 1 ),
             Number of Rows in Headers( 1 ),
             Headers Start on Row( 1 ),
             Data Starts on Row( 2 ),
             Data Starts on Column( 1 ),
             Data Ends on Row( 0 ),
             Data Ends on Column( 0 ),
             Replicated Spanned Rows( 1 ),
             Replicated Spanned Headers( 0 ),
             Suppress Hidden Rows( 1 ),
             Suppress Hidden Columns( 1 ),
             Suppress Empty Columns( 1 ),
             Treat as Hierarchy( 0 ),
             Multiple Series Stack( 0 ),
             Import Cell Colors( 0 ),
             Limit Column Detect( 0 ),
             Column Separator String( "-" )
      )
) ;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there a way to import the 3 Excel sheet (AAA, BBB, CCC) from the same Excel file without opening the Excel file each time ?&lt;/P&gt;&lt;P&gt;Thanks a lot for your answer,&lt;/P&gt;&lt;P&gt;Sébastien&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2024 16:07:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Import-of-3-sheets-from-the-same-Excel-file/m-p/735393#M91665</guid>
      <dc:creator>Sebastienlg</dc:creator>
      <dc:date>2024-03-18T16:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: Import of 3 sheets from the same Excel file</title>
      <link>https://community.jmp.com/t5/Discussions/Import-of-3-sheets-from-the-same-Excel-file/m-p/735524#M91672</link>
      <description>&lt;P&gt;Try specifying all 3 spreadsheets in the single input&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Worksheets( { "AAA", "BBB", "CCC" }),&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 18 Mar 2024 18:25:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Import-of-3-sheets-from-the-same-Excel-file/m-p/735524#M91672</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-03-18T18:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Import of 3 sheets from the same Excel file</title>
      <link>https://community.jmp.com/t5/Discussions/Import-of-3-sheets-from-the-same-Excel-file/m-p/736244#M91700</link>
      <description>&lt;P&gt;Great, it works!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for you reply,&lt;/P&gt;&lt;P&gt;Sébastien&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 11:02:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Import-of-3-sheets-from-the-same-Excel-file/m-p/736244#M91700</guid>
      <dc:creator>Sebastienlg</dc:creator>
      <dc:date>2024-03-19T11:02:48Z</dc:date>
    </item>
  </channel>
</rss>

