<?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: SubField (product) of 2 columns in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230631#M392152</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK I've figured out how to amend&lt;SPAN class="j-post-author"&gt;&lt;STRONG&gt;&amp;nbsp; &lt;/STRONG&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="2991" data-externalid="" data-presence="null" data-userid="26418" data-username="tresesco" href="https://community.qlik.com/people/tresesco"&gt;&lt;SPAN style="color: #0066cc; text-decoration: underline;"&gt;&lt;STRONG&gt;Tresesco B&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;STRONG&gt;s&lt;/STRONG&gt; version for my needs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;The only question now is:&amp;nbsp; &lt;STRONG&gt;HOW?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;&lt;STRONG&gt;What to study to learn such tricks?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jan 2017 12:21:43 GMT</pubDate>
    <dc:creator>qluser01</dc:creator>
    <dc:date>2017-01-25T12:21:43Z</dc:date>
    <item>
      <title>SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230627#M392148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ID, Col2, Col3:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1, 11|22|33, -Text1 -Text2 -Text3&lt;/P&gt;&lt;P&gt;2, 15|25|35, -Text4 -Text5 -Text6&lt;/P&gt;&lt;P&gt;3, , -Teext7 -Text8 -Text9 -Text10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Row separator for Col2 is '|'&lt;/P&gt;&lt;P&gt;Row separator for Col3 is '-'&lt;/P&gt;&lt;P&gt;I need to make separate rows from Col2 and Col3, so that each value of Col2 goes together with value (corresponds) of Col3 in each row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the result should be:&lt;/P&gt;&lt;P&gt;ID, Col2_, Col3_:&lt;/P&gt;&lt;P&gt;1, 11, Text1&lt;/P&gt;&lt;P&gt;1, 22, Text2&lt;/P&gt;&lt;P&gt;1, 33, Text3 &lt;/P&gt;&lt;P&gt;2, 15, Text4&lt;/P&gt;&lt;P&gt;2, 25, Text5&lt;/P&gt;&lt;P&gt;2, 35, Text6&lt;/P&gt;&lt;P&gt;3, , Teext7&lt;/P&gt;&lt;P&gt;3, , Teext8&lt;/P&gt;&lt;P&gt;3, , Teext9&lt;/P&gt;&lt;P&gt;3, , Teext10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2017 03:37:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230627#M392148</guid>
      <dc:creator>qluser01</dc:creator>
      <dc:date>2017-01-25T03:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230628#M392149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Col2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where Len(Trim(Col3)) &amp;gt; 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; SubField(Col2, '|') as Col2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Len(Trim(Col2)) = 0, SubField(Col3, '-'), SubField(Col3, '-', AutoNumber(RowNo(), ID) + 1)) as Col3;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ID, Col2, Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1, 11|22|33, -Text1 -Text2 -Text3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2, 15|25|35, -Text4 -Text5 -Text6&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3, , -Teext7 -Text8 -Text9 -Text10&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2017 10:15:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230628#M392149</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-25T10:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230629#M392150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;load *,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; SubField(Col2,'|',IterNo()) as NewCol2,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; SubField(Col3,'-',IterNo()+1) as NewCol3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;While IterNo()&amp;lt;= RangeMax(SubStringCount(Col3,'-'),SubStringCount(Col2,'|'));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;load * Inline [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ID, Col2, Col3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1, 11|22|33,-Text1-Text2-Text3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;2, 15|25|35,-Text4-Text5-Text6&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;3, ,-Teext7-Text8-Text9-Text10&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2017 11:00:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230629#M392150</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-01-25T11:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230630#M392151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both ways work quite well.&lt;/P&gt;&lt;P&gt;2 questions: where (and how) did you learn these tricks?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the serious one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you change it for &lt;STRONG&gt;another source data&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ID, Col2, Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1, 11|22|33, Text1| Text2| Text3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2, 15|25|35, Text4| Text5| Text6&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3, , Teext7| Text8| Text9| Text10&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;where &lt;STRONG&gt;'|' is a break line&lt;/STRONG&gt; char ( char(10) ) in Excel, So that we have &lt;STRONG&gt;in Excel&amp;nbsp;&amp;nbsp; Col2 cell&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;11&lt;/P&gt;&lt;P&gt;22&lt;/P&gt;&lt;P&gt;33&lt;/P&gt;&lt;P&gt;in 1 cell ( Col2 )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and corresponding:&lt;/P&gt;&lt;P&gt;Text1&lt;/P&gt;&lt;P&gt;Text2&lt;/P&gt;&lt;P&gt;Text3&lt;/P&gt;&lt;P&gt;in 1 cell&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in Col3 cell to the right of the Col2 cell,&lt;/P&gt;&lt;P&gt;in the same row with ID = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2017 11:57:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230630#M392151</guid>
      <dc:creator>qluser01</dc:creator>
      <dc:date>2017-01-25T11:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230631#M392152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK I've figured out how to amend&lt;SPAN class="j-post-author"&gt;&lt;STRONG&gt;&amp;nbsp; &lt;/STRONG&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="2991" data-externalid="" data-presence="null" data-userid="26418" data-username="tresesco" href="https://community.qlik.com/people/tresesco"&gt;&lt;SPAN style="color: #0066cc; text-decoration: underline;"&gt;&lt;STRONG&gt;Tresesco B&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;STRONG&gt;s&lt;/STRONG&gt; version for my needs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;The only question now is:&amp;nbsp; &lt;STRONG&gt;HOW?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;&lt;STRONG&gt;What to study to learn such tricks?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2017 12:21:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230631#M392152</guid>
      <dc:creator>qluser01</dc:creator>
      <dc:date>2017-01-25T12:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230632#M392153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With mine, may be this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; Col2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; Col3&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Where Len(Trim(Col3)) &amp;gt; 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; SubField(Col2, &lt;SPAN style="color: #ff0000;"&gt;Chr(10)&lt;/SPAN&gt;) as Col2,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; If(Len(Trim(Col2)) = 0, SubField(Col3, '-'), SubField(Col3, '-', AutoNumber(RowNo(), ID) + 1)) as Col3;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Not tested it, but see if that works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2017 12:33:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230632#M392153</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-25T12:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230633#M392154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change only the separator character like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'courier new', courier;"&gt;SubField(Col3,&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;'|'&lt;/STRONG&gt;&lt;/SPAN&gt;,IterNo()+1) as NewCol3&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2017 13:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230633#M392154</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-01-25T13:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230634#M392155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please try below sample script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14853514577845347" jivemacro_uid="_14853514577845347"&gt;
&lt;P&gt;For i=1 to 4&lt;/P&gt;
&lt;P&gt;Data:&lt;/P&gt;
&lt;P&gt;LOAD ID, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField(Col2,'|',$(i)) AS Col2,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField(Col3,'-',$(i)) AS Col3&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;Source.txt&lt;/P&gt;
&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;
&lt;P&gt;Next&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;NoConcatenate &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;FinalData:&lt;/P&gt;
&lt;P&gt;LOAD *&lt;/P&gt;
&lt;P&gt;Resident Data&lt;/P&gt;
&lt;P&gt;WHERE Len(Col3) &amp;gt; 0;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Drop Table Data;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2017 13:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230634#M392155</guid>
      <dc:creator>rahulpawarb</dc:creator>
      <dc:date>2017-01-25T13:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230635#M392156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So could you refer me to a study course or book or whatever to learn this and similar tricks?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2017 18:53:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230635#M392156</guid>
      <dc:creator>qluser01</dc:creator>
      <dc:date>2017-01-26T18:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: SubField (product) of 2 columns</title>
      <link>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230636#M392157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Curious to know if my response worked?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and as per ways to learn these tricks, I am not sure how &lt;A href="https://community.qlik.com/people/tresesco"&gt;tresesco&lt;/A&gt;‌ learnt them, but I learned by helping others. The more you get involved on the community, the more diverse issues you will come across. You will have a solution, someone else have a better solution (like Tresesco did this time) and you will see why there solution was more efficient and re engineer it to understand it. In the process you get to learn more. It won't happen over-night, but as you spend more and more time you will get to learn new tricks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2017 19:09:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SubField-product-of-2-columns/m-p/1230636#M392157</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-26T19:09:16Z</dc:date>
    </item>
  </channel>
</rss>

