<?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: Extracting data from Spreadsheet in SharePoint Cloud in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Extracting-data-from-Spreadsheet-in-SharePoint-Cloud/m-p/1385200#M421820</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As a follow up to my question I have resolved this issue by creating PowerShell scripts to extract the SharePoint Cloud spreadsheets and place them on a local drive for QlikView to consume rather then extracting directly from SharePoint. Below is a sample script and a link to Microsoft instructions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Requirements:&lt;BR /&gt;# Follow the install instructions here:&lt;BR /&gt;&lt;SPAN&gt;# &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://msdn.microsoft.com/en-us/pnp_powershell/pnp-powershell-overview" rel="nofollow" target="_blank"&gt;https://msdn.microsoft.com/en-us/pnp_powershell/pnp-powershell-overview&lt;/A&gt;&lt;BR /&gt;# &lt;BR /&gt;# As a first time setup (and whenever the password you are using changes, you must create a secure password using the following line:&lt;BR /&gt;# read-host -assecurestring | convertfrom-securestring | out-file 'C:\work\username.txt'&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# Setup&lt;BR /&gt;&lt;SPAN&gt;$UserName = "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:username@xxxxxx.com"&gt;username@xxxxxx.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt;$Password = Get-Content 'C:\work\user.txt' | ConvertTo-SecureString&lt;BR /&gt;$Credential = New-Object System.Management.Automation.PsCredential($UserName, $Password)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# For each of your sites you want to download from, call this&lt;BR /&gt;# NOTE: you must put the full path to the site you wish to download the file from&lt;BR /&gt;Connect-PnPOnline -Url &lt;A href="https://xxxxxx.sharepoint.com/sites/username"&gt;https://xxxxxx.sharepoint.com/sites/username&lt;/A&gt; -Credentials $Credential&lt;BR /&gt;# Then call this to download each file&lt;BR /&gt;# NOTE: you must put the path to the file without the server here&lt;BR /&gt;Get-PnPFile -Url "/sites/pagename/Shared%20Documents/Test.xlsx" -Path c:\work -FileName "TestGetFile.xlsx" -AsFile -Force&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Feb 2018 15:46:03 GMT</pubDate>
    <dc:creator>dbaksa_1</dc:creator>
    <dc:date>2018-02-15T15:46:03Z</dc:date>
    <item>
      <title>Extracting data from Spreadsheet in SharePoint Cloud</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-data-from-Spreadsheet-in-SharePoint-Cloud/m-p/1385199#M421819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We currently have SharePoint services on premise and are migrating out sited to the Azure Cloud, We have some content kept in XLSX Spreadsheets stored in our on premise sites. I have done some testing and research and cannot seem to identify the proper method of connecting to the SharePoint cloud for extraction of data from a Spreadsheet, I have looked at the WebConnector and see an Office 365 Web Connector that is in Beta development and I really don't want to consider a Beta solution for this problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any assistance is appreciated, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Dec 2017 22:03:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-data-from-Spreadsheet-in-SharePoint-Cloud/m-p/1385199#M421819</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-11T22:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data from Spreadsheet in SharePoint Cloud</title>
      <link>https://community.qlik.com/t5/QlikView/Extracting-data-from-Spreadsheet-in-SharePoint-Cloud/m-p/1385200#M421820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As a follow up to my question I have resolved this issue by creating PowerShell scripts to extract the SharePoint Cloud spreadsheets and place them on a local drive for QlikView to consume rather then extracting directly from SharePoint. Below is a sample script and a link to Microsoft instructions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Requirements:&lt;BR /&gt;# Follow the install instructions here:&lt;BR /&gt;&lt;SPAN&gt;# &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://msdn.microsoft.com/en-us/pnp_powershell/pnp-powershell-overview" rel="nofollow" target="_blank"&gt;https://msdn.microsoft.com/en-us/pnp_powershell/pnp-powershell-overview&lt;/A&gt;&lt;BR /&gt;# &lt;BR /&gt;# As a first time setup (and whenever the password you are using changes, you must create a secure password using the following line:&lt;BR /&gt;# read-host -assecurestring | convertfrom-securestring | out-file 'C:\work\username.txt'&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# Setup&lt;BR /&gt;&lt;SPAN&gt;$UserName = "&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:username@xxxxxx.com"&gt;username@xxxxxx.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;BR /&gt;$Password = Get-Content 'C:\work\user.txt' | ConvertTo-SecureString&lt;BR /&gt;$Credential = New-Object System.Management.Automation.PsCredential($UserName, $Password)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;# For each of your sites you want to download from, call this&lt;BR /&gt;# NOTE: you must put the full path to the site you wish to download the file from&lt;BR /&gt;Connect-PnPOnline -Url &lt;A href="https://xxxxxx.sharepoint.com/sites/username"&gt;https://xxxxxx.sharepoint.com/sites/username&lt;/A&gt; -Credentials $Credential&lt;BR /&gt;# Then call this to download each file&lt;BR /&gt;# NOTE: you must put the path to the file without the server here&lt;BR /&gt;Get-PnPFile -Url "/sites/pagename/Shared%20Documents/Test.xlsx" -Path c:\work -FileName "TestGetFile.xlsx" -AsFile -Force&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2018 15:46:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extracting-data-from-Spreadsheet-in-SharePoint-Cloud/m-p/1385200#M421820</guid>
      <dc:creator>dbaksa_1</dc:creator>
      <dc:date>2018-02-15T15:46:03Z</dc:date>
    </item>
  </channel>
</rss>

