<?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 Tips and Tricks in QlikView in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Tips-and-Tricks-in-QlikView/m-p/427092#M559521</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anybody has some knowledge of the hidden internal things QlikView can do for you or has some tips and tricks to share, please reply to this post. I am sharing my first point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Autmatic data generation within QlikView script&lt;/P&gt;&lt;P&gt;Once you are in the Edit Script window, you can generate data within QlikView for a quick and dirty testing purpose by just pressing Ctrl+q+q (press 'q' twice while holding Ctrl). QlikView will automatically generate the following lines of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Characters:&lt;/P&gt;&lt;P&gt;Load Chr(RecNo()+Ord('A')-1) as Alpha, RecNo() as Num autogenerate 26;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASCII:&lt;BR /&gt;Load &lt;BR /&gt; if(RecNo()&amp;gt;=65 and RecNo()&amp;lt;=90,RecNo()-64) as Num,&lt;BR /&gt; Chr(RecNo()) as AsciiAlpha, &lt;BR /&gt; RecNo() as AsciiNum&lt;BR /&gt;autogenerate 255&lt;BR /&gt; Where (RecNo()&amp;gt;=32 and RecNo()&amp;lt;=126) or RecNo()&amp;gt;=160 ;&lt;BR /&gt; &lt;BR /&gt;Transactions:&lt;BR /&gt;Load&lt;BR /&gt; TransLineID, &lt;BR /&gt; TransID,&lt;BR /&gt; mod(TransID,26)+1 as Num,&lt;BR /&gt; Pick(Ceil(3*Rand1),'A','B','C') as Dim1,&lt;BR /&gt; Pick(Ceil(6*Rand1),'a','b','c','d','e','f') as Dim2,&lt;BR /&gt; Pick(Ceil(3*Rand()),'X','Y','Z') as Dim3,&lt;BR /&gt; Round(1000*Rand()*Rand()*Rand1) as Expression1,&lt;BR /&gt; Round(&amp;nbsp; 10*Rand()*Rand()*Rand1) as Expression2,&lt;BR /&gt; Round(Rand()*Rand1,0.00001) as Expression3;&lt;BR /&gt;Load &lt;BR /&gt; Rand() as Rand1,&lt;BR /&gt; IterNo() as TransLineID,&lt;BR /&gt; RecNo() as TransID&lt;BR /&gt;Autogenerate 1000&lt;BR /&gt; While Rand()&amp;lt;=0.5 or IterNo()=1;&lt;/P&gt;&lt;P&gt; Comment Field Dim1 With "This is a field comment";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first load, i.e. Characters load the alphabet (A-Z) and their corresponding serial number (1-26). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second load, i.e. ASCII loads the characters along with special character and integers and their corresponding ASCII values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The third load, i.e. Transactions loads 3 sample dimensions, 3 sample expressions and sample transaction data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note, these are the system fields which becomes visible when you check the 'Show System Fields' checkbox in the properties window of a relevant chart object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 May 2013 05:49:06 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-05-06T05:49:06Z</dc:date>
    <item>
      <title>Tips and Tricks in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/Tips-and-Tricks-in-QlikView/m-p/427092#M559521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anybody has some knowledge of the hidden internal things QlikView can do for you or has some tips and tricks to share, please reply to this post. I am sharing my first point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Autmatic data generation within QlikView script&lt;/P&gt;&lt;P&gt;Once you are in the Edit Script window, you can generate data within QlikView for a quick and dirty testing purpose by just pressing Ctrl+q+q (press 'q' twice while holding Ctrl). QlikView will automatically generate the following lines of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Characters:&lt;/P&gt;&lt;P&gt;Load Chr(RecNo()+Ord('A')-1) as Alpha, RecNo() as Num autogenerate 26;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASCII:&lt;BR /&gt;Load &lt;BR /&gt; if(RecNo()&amp;gt;=65 and RecNo()&amp;lt;=90,RecNo()-64) as Num,&lt;BR /&gt; Chr(RecNo()) as AsciiAlpha, &lt;BR /&gt; RecNo() as AsciiNum&lt;BR /&gt;autogenerate 255&lt;BR /&gt; Where (RecNo()&amp;gt;=32 and RecNo()&amp;lt;=126) or RecNo()&amp;gt;=160 ;&lt;BR /&gt; &lt;BR /&gt;Transactions:&lt;BR /&gt;Load&lt;BR /&gt; TransLineID, &lt;BR /&gt; TransID,&lt;BR /&gt; mod(TransID,26)+1 as Num,&lt;BR /&gt; Pick(Ceil(3*Rand1),'A','B','C') as Dim1,&lt;BR /&gt; Pick(Ceil(6*Rand1),'a','b','c','d','e','f') as Dim2,&lt;BR /&gt; Pick(Ceil(3*Rand()),'X','Y','Z') as Dim3,&lt;BR /&gt; Round(1000*Rand()*Rand()*Rand1) as Expression1,&lt;BR /&gt; Round(&amp;nbsp; 10*Rand()*Rand()*Rand1) as Expression2,&lt;BR /&gt; Round(Rand()*Rand1,0.00001) as Expression3;&lt;BR /&gt;Load &lt;BR /&gt; Rand() as Rand1,&lt;BR /&gt; IterNo() as TransLineID,&lt;BR /&gt; RecNo() as TransID&lt;BR /&gt;Autogenerate 1000&lt;BR /&gt; While Rand()&amp;lt;=0.5 or IterNo()=1;&lt;/P&gt;&lt;P&gt; Comment Field Dim1 With "This is a field comment";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first load, i.e. Characters load the alphabet (A-Z) and their corresponding serial number (1-26). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second load, i.e. ASCII loads the characters along with special character and integers and their corresponding ASCII values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The third load, i.e. Transactions loads 3 sample dimensions, 3 sample expressions and sample transaction data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note, these are the system fields which becomes visible when you check the 'Show System Fields' checkbox in the properties window of a relevant chart object.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 May 2013 05:49:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tips-and-Tricks-in-QlikView/m-p/427092#M559521</guid>
      <dc:creator />
      <dc:date>2013-05-06T05:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Tips and Tricks in QlikView</title>
      <link>https://community.qlik.com/t5/QlikView/Tips-and-Tricks-in-QlikView/m-p/427093#M559522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anirban&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This seems to be an old post. But in terms of Tips &amp;amp; Tricks, try the attached post:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-5486"&gt;QlikView How To (or Tips &amp;amp;amp; Tricks) Application&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Lee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 23:49:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Tips-and-Tricks-in-QlikView/m-p/427093#M559522</guid>
      <dc:creator>Lee_Matthews</dc:creator>
      <dc:date>2014-05-13T23:49:02Z</dc:date>
    </item>
  </channel>
</rss>

