<?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: Import Excel Worksheet from Collab Site as Private Table Not Working in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Import-Excel-Worksheet-from-Collab-Site-as-Private-Table-Not/m-p/485857#M72970</link>
    <description>&lt;P&gt;Okay so I found a workaround. I still don't know why specifically the method above invalidates the&amp;nbsp;&lt;CODE class=" language-jsl"&gt;Private&lt;/CODE&gt;&amp;nbsp;Setting, but you can access collab sites within the Open Data File window by putting the folder path as shown below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;https://collab.company.com/sites/Folder/Shared&amp;nbsp;Documents/General/&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I opened the file this way and then looked at the JSL script for that table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open(
	"\\collab.company.com@SSL\DavWWWRoot\sites\Folder\Shared Documents\General\Name of Document.xlsm",
	Worksheets( "In-Process Config Table" ),
	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;The filepath is different. I'm not fully sure what&amp;nbsp;&lt;CODE class=" language-jsl"&gt;@SSL\DavWWWRoot\&lt;/CODE&gt; means, but when you set the table to private, it works. It doesn't have to wait on a webpage opening to create a pathway. I still am wondering why the above problem happens because it feels like a weird issue, but this method I discovered is actually better.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 May 2022 20:11:56 GMT</pubDate>
    <dc:creator>svarga</dc:creator>
    <dc:date>2022-05-10T20:11:56Z</dc:date>
    <item>
      <title>Import Excel Worksheet from Collab Site as Private Table Not Working</title>
      <link>https://community.jmp.com/t5/Discussions/Import-Excel-Worksheet-from-Collab-Site-as-Private-Table-Not/m-p/485771#M72960</link>
      <description>&lt;P&gt;I'm importing an excel worksheet from a Teams/Sharepoint/Collab site and the "Private" setting doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	dt = Open ("https://collab.company.com/:x:/r/sites/Folder/Shared%20Documents/General/Title%of%Excel.xlsm?download=1",
		Worksheets( "Sheet1" ),
		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( "-" )
		), Private
	);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;When I replace the filepath with a local filepath, the table is Private, but when I'm using the filepath for the collab site, it doesn't read the Private. I've tried putting the&amp;nbsp;&lt;CODE class=" language-jsl"&gt;Output Table("Name of Output Table")&lt;/CODE&gt; command in without the &lt;CODE class=" language-jsl"&gt;Private&lt;/CODE&gt;&amp;nbsp;to see if the code is even reading anything after the filepath and that setting isn't recognized. Obviously, the Worksheet setting is recognized because it does return that specific worksheet, but I don't know why it isn't reading private or output table. It's also not because this is a .xlsm vs .xlsx file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:48:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Import-Excel-Worksheet-from-Collab-Site-as-Private-Table-Not/m-p/485771#M72960</guid>
      <dc:creator>svarga</dc:creator>
      <dc:date>2023-06-10T23:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Import Excel Worksheet from Collab Site as Private Table Not Working</title>
      <link>https://community.jmp.com/t5/Discussions/Import-Excel-Worksheet-from-Collab-Site-as-Private-Table-Not/m-p/485857#M72970</link>
      <description>&lt;P&gt;Okay so I found a workaround. I still don't know why specifically the method above invalidates the&amp;nbsp;&lt;CODE class=" language-jsl"&gt;Private&lt;/CODE&gt;&amp;nbsp;Setting, but you can access collab sites within the Open Data File window by putting the folder path as shown below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;https://collab.company.com/sites/Folder/Shared&amp;nbsp;Documents/General/&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I opened the file this way and then looked at the JSL script for that table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open(
	"\\collab.company.com@SSL\DavWWWRoot\sites\Folder\Shared Documents\General\Name of Document.xlsm",
	Worksheets( "In-Process Config Table" ),
	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;The filepath is different. I'm not fully sure what&amp;nbsp;&lt;CODE class=" language-jsl"&gt;@SSL\DavWWWRoot\&lt;/CODE&gt; means, but when you set the table to private, it works. It doesn't have to wait on a webpage opening to create a pathway. I still am wondering why the above problem happens because it feels like a weird issue, but this method I discovered is actually better.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 20:11:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Import-Excel-Worksheet-from-Collab-Site-as-Private-Table-Not/m-p/485857#M72970</guid>
      <dc:creator>svarga</dc:creator>
      <dc:date>2022-05-10T20:11:56Z</dc:date>
    </item>
  </channel>
</rss>

