<?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 SV:looping the website in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/looping-the-website/m-p/176631#M44568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vSource = If(i=1, '[http://en.wikipedia.org/w/index.php?title=Latitude_and_longitude_of_cities,_A-H&amp;amp;printable=yes] (html, utf8, embedded labels, table is @1)',&lt;BR /&gt; If(i=2, '[http://en.wikipedia.org/w/index.php?title=Latitude_and_longitude_of_cities,_I-P&amp;amp;printable=yes] (html, utf8, embedded labels, table is @1)',&lt;BR /&gt; If(i=3, '[http://en.wikipedia.org/w/index.php?title=Latitude_and_longitude_of_cities,_Q-Z&amp;amp;printable=yes] (html, utf8, embedded labels, table is @1)' )));&lt;BR /&gt;&lt;BR /&gt;FOR i = 1 TO 3&lt;BR /&gt; LET vHttp = $(vSource);&lt;BR /&gt;&lt;BR /&gt; Latitude:&lt;BR /&gt; LOAD *&lt;BR /&gt; FROM $(vHttp);&lt;BR /&gt;NEXT ;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Jan 2011 17:04:38 GMT</pubDate>
    <dc:creator>antose</dc:creator>
    <dc:date>2011-01-21T17:04:38Z</dc:date>
    <item>
      <title>looping the website</title>
      <link>https://community.qlik.com/t5/QlikView/looping-the-website/m-p/176630#M44567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Consider i have an url &lt;A href="http://en.wikipedia.org/wiki/Latitude_and_longitude_of_cities,_A-H"&gt;http://en.wikipedia.org/wiki/Latitude_and_longitude_of_cities,_A-H&lt;/A&gt; which will show the data for the alohabets from A-H and &lt;A href="http://en.wikipedia.org/wiki/Latitude_and_longitude_of_cities,_I-P"&gt;http://en.wikipedia.org/wiki/Latitude_and_longitude_of_cities,_I-P&lt;/A&gt;&lt;/P&gt;&lt;P&gt;So is it possible to pass the parameter A-H and I-P to url and load the data from the website in to single table rather than loading in to multiple table and merging in to single table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jan 2011 10:01:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/looping-the-website/m-p/176630#M44567</guid>
      <dc:creator />
      <dc:date>2011-01-20T10:01:27Z</dc:date>
    </item>
    <item>
      <title>SV:looping the website</title>
      <link>https://community.qlik.com/t5/QlikView/looping-the-website/m-p/176631#M44568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vSource = If(i=1, '[http://en.wikipedia.org/w/index.php?title=Latitude_and_longitude_of_cities,_A-H&amp;amp;printable=yes] (html, utf8, embedded labels, table is @1)',&lt;BR /&gt; If(i=2, '[http://en.wikipedia.org/w/index.php?title=Latitude_and_longitude_of_cities,_I-P&amp;amp;printable=yes] (html, utf8, embedded labels, table is @1)',&lt;BR /&gt; If(i=3, '[http://en.wikipedia.org/w/index.php?title=Latitude_and_longitude_of_cities,_Q-Z&amp;amp;printable=yes] (html, utf8, embedded labels, table is @1)' )));&lt;BR /&gt;&lt;BR /&gt;FOR i = 1 TO 3&lt;BR /&gt; LET vHttp = $(vSource);&lt;BR /&gt;&lt;BR /&gt; Latitude:&lt;BR /&gt; LOAD *&lt;BR /&gt; FROM $(vHttp);&lt;BR /&gt;NEXT ;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 17:04:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/looping-the-website/m-p/176631#M44568</guid>
      <dc:creator>antose</dc:creator>
      <dc:date>2011-01-21T17:04:38Z</dc:date>
    </item>
    <item>
      <title>SV:looping the website</title>
      <link>https://community.qlik.com/t5/QlikView/looping-the-website/m-p/176632#M44569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anders solution is OK, you can use also Concatenate load and subfield function to parse the field and create 2 new fields Latitude &amp;amp; Longitude&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;LOAD Country,&lt;BR /&gt; City,&lt;BR /&gt; [Latitude Longitude],&lt;BR /&gt; subfield( subfield( [Latitude Longitude] , '/' , 3) , ';' , 1) as Latitude ,&lt;BR /&gt; subfield( subfield( [Latitude Longitude] , '/' , 3) , ';' , 2) as Longitude&lt;BR /&gt;FROM&lt;BR /&gt;[http://en.wikipedia.org/w/index.php?title=Latitude_and_longitude_of_cities,_A-H&amp;amp;printable=yes] (html, utf8, embedded labels, table is @1);&lt;BR /&gt;&lt;BR /&gt;CONCATENATE LOAD Country,&lt;BR /&gt; City,&lt;BR /&gt; [Latitude Longitude],&lt;BR /&gt; subfield( subfield( [Latitude Longitude] , '/' , 3) , ';' , 1) as Latitude ,&lt;BR /&gt; subfield( subfield( [Latitude Longitude] , '/' , 3) , ';' , 2) as Longitude&lt;BR /&gt;FROM&lt;BR /&gt;[http://en.wikipedia.org/w/index.php?title=Latitude_and_longitude_of_cities,_I-P&amp;amp;printable=yes] (html, utf8, embedded labels, table is @1);&lt;BR /&gt;&lt;BR /&gt;CONCATENATE LOAD Country,&lt;BR /&gt; City,&lt;BR /&gt; [Latitude Longitude],&lt;BR /&gt; subfield( subfield( [Latitude Longitude] , '/' , 3) , ';' , 1) as Latitude ,&lt;BR /&gt; subfield( subfield( [Latitude Longitude] , '/' , 3) , ';' , 2) as Longitude&lt;BR /&gt;FROM&lt;BR /&gt;[http://en.wikipedia.org/w/index.php?title=Latitude_and_longitude_of_cities,_Q-Z&amp;amp;printable=yes] (html, utf8, embedded labels, table is @1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;JJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Jan 2011 21:57:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/looping-the-website/m-p/176632#M44569</guid>
      <dc:creator />
      <dc:date>2011-01-23T21:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: SV:looping the website</title>
      <link>https://community.qlik.com/t5/QlikView/looping-the-website/m-p/176633#M44570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The particular sharepoint where I am going to fetch the data needs authentication. Could you please let me how that can be done please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Created the new thread for the same below.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/249859#249859"&gt;http://community.qlik.com/message/249859#249859&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;qlikview forum&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2012 14:13:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/looping-the-website/m-p/176633#M44570</guid>
      <dc:creator>qlikviewforum</dc:creator>
      <dc:date>2012-08-20T14:13:25Z</dc:date>
    </item>
  </channel>
</rss>

