<?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: Beginner in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Beginner/m-p/390536#M1167036</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thnks Sri &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Sep 2012 05:03:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-09-11T05:03:21Z</dc:date>
    <item>
      <title>Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Beginner/m-p/390530#M1167030</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;Actually i was starting to know about data loading in qlik view where i got this statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Load @1:2 as ID, @3:25 as Name, @57:80 as City from data4.fix (ansi, fix, no labels, header is 0, record is 80); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am not able to understand,what does @ signifies here and how the load statement will work.&lt;/P&gt;&lt;P&gt;Pls explain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Azim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 11:35:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Beginner/m-p/390530#M1167030</guid>
      <dc:creator />
      <dc:date>2012-09-10T11:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Beginner/m-p/390531#M1167031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@1:2 is the actual fieldname in the data4.fix and that field name is given with aliasname &lt;STRONG&gt;as &lt;/STRONG&gt;and the&lt;STRONG&gt; newfieldname&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 11:46:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Beginner/m-p/390531#M1167031</guid>
      <dc:creator>sreenivas</dc:creator>
      <dc:date>2012-09-10T11:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Beginner/m-p/390532#M1167032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So in data4.fix we need to check with the names of actual field .In case if there are lot of columns we cant go and create aliases for every column ,Is there any way so that we can generate dynamic names for columns like this in Qlikview?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 11:50:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Beginner/m-p/390532#M1167032</guid>
      <dc:creator />
      <dc:date>2012-09-10T11:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Beginner/m-p/390533#M1167033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through the QlikView Reference manual for help on LOAD statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the text from the same for the above load statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) @fieldnumber represents the field number in a delimited table file. It must be a positive integer preceded by&lt;/P&gt;&lt;P&gt;"@". The numbering is always made from 1 and up to the number of fields.&lt;/P&gt;&lt;P&gt;2) @startpos:endpos represents the start and end positions of a field in a file with fixed length records. The&lt;/P&gt;&lt;P&gt;positions must both be positive integers. The two numbers must be preceded by "@" and separated by a&lt;/P&gt;&lt;P&gt;colon. The numbering is always made from 1 and up to the number of positions. If @startpos:endpos is&lt;/P&gt;&lt;P&gt;immediately followed by the characters I or U, the bytes read will be interpreted as a binary signed (I) or&lt;/P&gt;&lt;P&gt;unsigned (U) integer (Intel byte order). The number of positions read must be 1, 2 or 4. If @startpos:endpos&lt;/P&gt;&lt;P&gt;is immediately followed by the character R, the bytes read will be interpreted as a binary real number (IEEE&lt;/P&gt;&lt;P&gt;32-bit or 64 bit floating point). The number of positions read must be 4 or 8. If @startpos:endpos is immediately&lt;/P&gt;&lt;P&gt;followed by the character B, the bytes read will be interpreted as a BCD (Binary Coded Decimal)&lt;/P&gt;&lt;P&gt;numbers according to the COMP-3 standard. Any number of bytes may be specified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Load @1as A, @2 as B from data3.txt' (ansi, txt, delimiter is '\t', no&lt;/P&gt;&lt;P&gt;labels);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Load @1:2 as ID, @3:25 as Name, @57:80 as City from data4.fix (ansi,&lt;/P&gt;&lt;P&gt;fix, no labels, header is 0, record is 80);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above examples 1 and 2 corresponds to statements 1 and 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 01:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Beginner/m-p/390533#M1167033</guid>
      <dc:creator />
      <dc:date>2012-09-11T01:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Beginner/m-p/390534#M1167034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the &lt;STRONG&gt;Qualify &lt;/STRONG&gt;statement which appends the table name to all of your column names;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 01:40:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Beginner/m-p/390534#M1167034</guid>
      <dc:creator />
      <dc:date>2012-09-11T01:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Beginner/m-p/390535#M1167035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the &lt;STRONG&gt;Qualify &lt;/STRONG&gt;statement which appends the table name to all of your column names;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 01:41:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Beginner/m-p/390535#M1167035</guid>
      <dc:creator />
      <dc:date>2012-09-11T01:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Beginner</title>
      <link>https://community.qlik.com/t5/QlikView/Beginner/m-p/390536#M1167036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thnks Sri &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2012 05:03:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Beginner/m-p/390536#M1167036</guid>
      <dc:creator />
      <dc:date>2012-09-11T05:03:21Z</dc:date>
    </item>
  </channel>
</rss>

