<?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 Conversion factor in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460411#M489499</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;can anyone know about conversion factor.&lt;/P&gt;&lt;P&gt;I am having table with ProductID,ProductgroupID,Factorvalue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to multiply this Factorvalue with productid.&lt;/P&gt;&lt;P&gt;How can i do this in qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;baru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 28 Oct 2012 10:51:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-10-28T10:51:31Z</dc:date>
    <item>
      <title>Conversion factor</title>
      <link>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460411#M489499</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;can anyone know about conversion factor.&lt;/P&gt;&lt;P&gt;I am having table with ProductID,ProductgroupID,Factorvalue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to multiply this Factorvalue with productid.&lt;/P&gt;&lt;P&gt;How can i do this in qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;baru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2012 10:51:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460411#M489499</guid>
      <dc:creator />
      <dc:date>2012-10-28T10:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion factor</title>
      <link>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460412#M489500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If both ProductID and Factorvalue are numbers you can calculate the product of the two as a new field in the load script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ProductID,&lt;/P&gt;&lt;P&gt;ProductgroupID,&lt;/P&gt;&lt;P&gt;Factorvalue,&lt;/P&gt;&lt;P&gt;ProductID * Factorvalue as ProdFactVal&lt;/P&gt;&lt;P&gt;from ....etc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a chart you can do the same in an expression: =ProductID * Factorvalue. If the fields are strings you can use the num function to make numbers of them: =num(ProductID) * num(Factorvalue)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2012 10:57:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460412#M489500</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-10-28T10:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion factor</title>
      <link>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460413#M489501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use below code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;ProductID&lt;/SPAN&gt;*&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Factorvalue&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2012 10:58:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460413#M489501</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2012-10-28T10:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion factor</title>
      <link>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460414#M489502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SK C,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thaks for reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to do dynamically,I want to write the logic in script level which means,the productId is linked to transaction table. so that in the future they will change the factovalue for that perticular productid it will efect to my reports with giving any calculation in reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope You understod,thank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;baru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2012 11:04:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460414#M489502</guid>
      <dc:creator />
      <dc:date>2012-10-28T11:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion factor</title>
      <link>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460415#M489503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then better to go with suggestion above by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/gwassenaar" id="jive-965444802293291263661" style="background-color: #ffffff; font-size: 12px; color: #007fc0; font-weight: bold; font-family: Arial; text-align: center;"&gt;Gysbert Wassenaar&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2012 11:14:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460415#M489503</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2012-10-28T11:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion factor</title>
      <link>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460416#M489504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;can anybody help me in this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;baru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2012 12:11:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460416#M489504</guid>
      <dc:creator />
      <dc:date>2012-10-28T12:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion factor</title>
      <link>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460417#M489505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Baru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you already got some reasonable answers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If these are not helping you, it would help us to understand if you add some informations. For example, try giving some sample lines of data describing your data model and your expected outcome (like a new field in the data model or a column in a chart (but then please describe also the dimensions you want to use).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can add these informations for example as INLINE tables (QV script snippets using an LOAD * INLINE [.. ] format) or excel tables or at best a small QV .qvw file demonstrating your issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Oct 2012 13:12:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conversion-factor/m-p/460417#M489505</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-10-28T13:12:40Z</dc:date>
    </item>
  </channel>
</rss>

