<?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: Unzip a sharepoint (web) file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051713#M352925</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arthur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. I will check and get back to you..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Apr 2016 01:11:02 GMT</pubDate>
    <dc:creator>Saravanan_Desingh</dc:creator>
    <dc:date>2016-04-06T01:11:02Z</dc:date>
    <item>
      <title>Unzip a sharepoint (web) file</title>
      <link>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051710#M352922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a situation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to unzip a spreadsheet and load it in my QV app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I searched the forum, I found only the local files can be unzipped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, in my case, I have to download the file to local and then unzip it through VBS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help with the code? I'm not good in VBS. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 20:19:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051710#M352922</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-04T20:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: Unzip a sharepoint (web) file</title>
      <link>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051711#M352923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I meant, I have a spreadsheet in the sharepoint folder, where I access it thru an URL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, we have to consider that as Web file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2016 20:21:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051711#M352923</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-04T20:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Unzip a sharepoint (web) file</title>
      <link>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051712#M352924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible. With something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sub Download&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;dim xHttp: Set xHttp = createobject("Microsoft.XMLHTTP")&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;dim bStrm: Set bStrm = createobject("ADODB.Stream")&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xHttp.Open "GET", "&lt;STRONG&gt;&lt;A class="jive-link-external-small" href="http://www.colorado.edu/conflict/peace/download/peace.zip" rel="nofollow" target="_blank"&gt;http://www.colorado.edu/conflict/peace/download/peace.zip&lt;/A&gt;&lt;/STRONG&gt;", False&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;xHttp.Send&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;with bStrm&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .type = 1 '//binary&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .open&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .write xHttp.responseBody&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .savetofile "&lt;STRONG&gt;c:\downloads\peace.zip&lt;/STRONG&gt;", 2 '//overwrite&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;end with&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;End sub&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I took this from Stack Overflow thread 2973136&amp;nbsp; from Alex K. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 12:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051712#M352924</guid>
      <dc:creator>arthur_dom</dc:creator>
      <dc:date>2016-04-05T12:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Unzip a sharepoint (web) file</title>
      <link>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051713#M352925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arthur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. I will check and get back to you..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 01:11:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051713#M352925</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-06T01:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Unzip a sharepoint (web) file</title>
      <link>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051714#M352926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, generally sharepoint sites also have the UNC drive paths and access the zip folder directly from sharepoint UNC path. Or create small script outside of Qlikview and download the files from share point site to Qlik readable drives and consume data from drive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you create the Macro, it won't work while reload the app.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 02:54:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051714#M352926</guid>
      <dc:creator />
      <dc:date>2016-04-06T02:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Unzip a sharepoint (web) file</title>
      <link>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051715#M352927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which version of SharePoint are we talking about? Is it even Office 365 in the cloud?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 08:10:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051715#M352927</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-04-06T08:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Unzip a sharepoint (web) file</title>
      <link>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051716#M352928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not aware of it. But I can find it out. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 12:07:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unzip-a-sharepoint-web-file/m-p/1051716#M352928</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-06T12:07:02Z</dc:date>
    </item>
  </channel>
</rss>

