<?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: Using mapping load - applymap to a table that we used the qualify command. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371859#M491925</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what if you put the text function in the applymap as well :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt; applymap ( '[Transaction Type Descriptions]',&amp;nbsp;&amp;nbsp; Text(@11:12) , '-' ) AS&amp;nbsp; [Transaction Type Description]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;or maybe do the applymap in a subsequent load above this load.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Jul 2012 12:59:17 GMT</pubDate>
    <dc:creator>giakoum</dc:creator>
    <dc:date>2012-07-27T12:59:17Z</dc:date>
    <item>
      <title>Using mapping load - applymap to a table that we used the qualify command.</title>
      <link>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371858#M491924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam loadind data from a .dat file ad because of this the format of the data i get is not the optimum.&lt;/P&gt;&lt;P&gt;i use the text( field) commnad to "normalize" the text data. i want to use a n applymap command to a field like the one i mentioned above. more precicely this is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; [Transaction Type Description]:&lt;/P&gt;&lt;P&gt;Mapping&amp;nbsp; LOAD &lt;/P&gt;&lt;P&gt;//load&lt;/P&gt;&lt;P&gt; Text(&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Code&lt;/STRONG&gt;&lt;/SPAN&gt;) as&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transactions Type], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text(&lt;STRONG style="text-decoration: underline;"&gt;Description&lt;/STRONG&gt;) as&amp;nbsp; [Transaction Type Description]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[$(vExcelDataDir)Transaction Type.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is [Transaction Type]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is an excel file that contains values ( 10,11,12,13,14,15 ....99) for the &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;&lt;STRONG&gt;Code &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;field and a string for the &lt;STRONG style="text-decoration: underline;"&gt;Description&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;the table i want to apply the map is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transcactions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; @1:11 as [Transcactions.Name], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text(@11:12) as&amp;nbsp;&amp;nbsp; [Transactions Type],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; applymap ( '[Transaction Type Descriptions]',&amp;nbsp;&amp;nbsp; @11:12 , '-' ) AS&amp;nbsp; [Transaction Type Description] &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[$(vLiveDataPath)TEST-TRX-FILE.TXT]&lt;/P&gt;&lt;P&gt;(fix, codepage is 1253, header is 1 lines);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i run the code i get an empty field for the&amp;nbsp; [Transaction Type Description] .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be very appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2012 12:38:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371858#M491924</guid>
      <dc:creator />
      <dc:date>2012-07-27T12:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using mapping load - applymap to a table that we used the qualify command.</title>
      <link>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371859#M491925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what if you put the text function in the applymap as well :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt; applymap ( '[Transaction Type Descriptions]',&amp;nbsp;&amp;nbsp; Text(@11:12) , '-' ) AS&amp;nbsp; [Transaction Type Description]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;or maybe do the applymap in a subsequent load above this load.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2012 12:59:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371859#M491925</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2012-07-27T12:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using mapping load - applymap to a table that we used the qualify command.</title>
      <link>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371860#M491926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've already tried both of your suggestions earlier before posting this but they did not work.&amp;nbsp; I am trying to find other ways to solve this..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2012 13:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371860#M491926</guid>
      <dc:creator />
      <dc:date>2012-07-27T13:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using mapping load - applymap to a table that we used the qualify command.</title>
      <link>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371861#M491927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe a sample application would help, if possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2012 13:13:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371861#M491927</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2012-07-27T13:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Using mapping load - applymap to a table that we used the qualify command.</title>
      <link>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371862#M491928</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;You can not use the '[ ]' ...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;applymap ('Tipo Transação Descrições', @ 11:12, '-') AS [Descrição Tipo de Transação]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Tab 1]:&lt;/P&gt;&lt;P&gt;Mapping&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[x, y&lt;/P&gt;&lt;P&gt;1, 10&lt;/P&gt;&lt;P&gt;2, 20&lt;/P&gt;&lt;P&gt;3, 30&lt;/P&gt;&lt;P&gt;4, 40&lt;/P&gt;&lt;P&gt;5, 50&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Tab 2]:&lt;/P&gt;&lt;P&gt;LOAD ApplyMap('Tab 1', RecNo(), '-') as Y&lt;/P&gt;&lt;P&gt;AutoGenerate(10);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that solves your problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2012 21:30:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-mapping-load-applymap-to-a-table-that-we-used-the-qualify/m-p/371862#M491928</guid>
      <dc:creator>felipe_dutra</dc:creator>
      <dc:date>2012-07-27T21:30:21Z</dc:date>
    </item>
  </channel>
</rss>

