<?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: Lottery 7/39 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554575#M207192</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great Ralf, really great..thank you. This is great solution as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Jan 2014 20:23:15 GMT</pubDate>
    <dc:creator>qlikserbian</dc:creator>
    <dc:date>2014-01-04T20:23:15Z</dc:date>
    <item>
      <title>Lottery 7/39</title>
      <link>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554570#M207187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone, &lt;/P&gt;&lt;P&gt;i am new one here and in qv.. Lot interesting things i have seen here thanks to this community blog..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am have question about lottery 7/39, how to check all combination and make conclusions which number show up the most and etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, If I have my lucky seven numbers 1,2,3,4,5,6,7 and all combination happened over year (in attach) on lottery 7/39 numbers I want to:&lt;BR /&gt;the first: make qv file (how to make this excel table appropriate to load in qlikview?&lt;/P&gt;&lt;P&gt;the second: how to make filter with numbers 1-39 when I select number 1 to show me all combination from lottery?&lt;/P&gt;&lt;P&gt;could anyone sent example of qlv files with solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that way is the best learning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably I have two tables connected some how. For sure this question is easy, but I have no idea how to do that.&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jan 2014 19:17:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554570#M207187</guid>
      <dc:creator>qlikserbian</dc:creator>
      <dc:date>2014-01-04T19:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Lottery 7/39</title>
      <link>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554571#M207188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you please post sample output file so that i can get u...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;according to my understanding ...u can use to seperate &lt;/P&gt;&lt;P&gt;subfield(Numbers,' ',1)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; numberA,&lt;/P&gt;&lt;P&gt;subfield(Numbers,' ',2)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; numberB,&lt;/P&gt;&lt;P&gt;etc &lt;/P&gt;&lt;P&gt;etc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jan 2014 19:24:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554571#M207188</guid>
      <dc:creator>preminqlik</dc:creator>
      <dc:date>2014-01-04T19:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Lottery 7/39</title>
      <link>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554572#M207189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Boriša,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can load the lottery drawings like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13888648550095116" jivemacro_uid="_13888648550095116"&gt;
&lt;P&gt;LotteryDrawing:&lt;/P&gt;
&lt;P&gt;LOAD DrawNo, If(Mod(RowNo(),7)=0, 7, Mod(RowNo(),7)) as Position, Subfield(Numbers, ' ') as Number;&lt;/P&gt;
&lt;P&gt;LOAD [#of game in 2013] as DrawNo, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Numbers&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is [lottery combination]);&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will create a table with one record per number and drawing. Please take a look into the attached QVW for analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jan 2014 19:49:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554572#M207189</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2014-01-04T19:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Lottery 7/39</title>
      <link>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554573#M207190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jan 2014 19:53:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554573#M207190</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2014-01-04T19:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Lottery 7/39</title>
      <link>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554574#M207191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great Swuehl, really great..thank you. This is great solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jan 2014 20:22:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554574#M207191</guid>
      <dc:creator>qlikserbian</dc:creator>
      <dc:date>2014-01-04T20:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Lottery 7/39</title>
      <link>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554575#M207192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great Ralf, really great..thank you. This is great solution as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jan 2014 20:23:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554575#M207192</guid>
      <dc:creator>qlikserbian</dc:creator>
      <dc:date>2014-01-04T20:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Lottery 7/39</title>
      <link>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554576#M207193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Swuehl,&lt;/P&gt;&lt;P&gt;i need help. Could you help me. I have problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 21:32:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Lottery-7-39/m-p/554576#M207193</guid>
      <dc:creator>qlikserbian</dc:creator>
      <dc:date>2014-02-18T21:32:32Z</dc:date>
    </item>
  </channel>
</rss>

