<?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 Need Assistance in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230163#M861633</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All, &lt;/P&gt;&lt;P&gt;I am working on incidents data that is stored in Oracle db. I need to show a graph with number of incidents reported as per the &lt;/P&gt;&lt;P&gt;Regions(North, APAC, South Europe &amp;amp;&amp;nbsp; Americas). For doing this, I used a column in database showing the country names and &lt;/P&gt;&lt;P&gt;mapped it with regions thru an Excel Sheet. I have attached the Excel Sheet for reference. For some incidents, the country&lt;/P&gt;&lt;P&gt;name is blank in database. When it is blank, I need to use an other column in database called "Customer Company" and &lt;/P&gt;&lt;P&gt;update the regions accordingly. After loading the data from database, I should be able to fetch the records showing the &lt;/P&gt;&lt;P&gt;Region name as blank and use Customer Company to update the regions. I am not able to do this. Request your assistance please.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Need Assistance</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230163#M861633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All, &lt;/P&gt;&lt;P&gt;I am working on incidents data that is stored in Oracle db. I need to show a graph with number of incidents reported as per the &lt;/P&gt;&lt;P&gt;Regions(North, APAC, South Europe &amp;amp;&amp;nbsp; Americas). For doing this, I used a column in database showing the country names and &lt;/P&gt;&lt;P&gt;mapped it with regions thru an Excel Sheet. I have attached the Excel Sheet for reference. For some incidents, the country&lt;/P&gt;&lt;P&gt;name is blank in database. When it is blank, I need to use an other column in database called "Customer Company" and &lt;/P&gt;&lt;P&gt;update the regions accordingly. After loading the data from database, I should be able to fetch the records showing the &lt;/P&gt;&lt;P&gt;Region name as blank and use Customer Company to update the regions. I am not able to do this. Request your assistance please.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230163#M861633</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need Assistance</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230164#M861634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When Loading your Region Field add an IF() to check for nulls and if it null use applymap() to populate CustomerCompany&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2756"&gt;Don't join - use Applymap instead&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/MappingFunctions/ApplyMap.htm" title="https://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/MappingFunctions/ApplyMap.htm"&gt;https://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/MappingFunctions/ApplyMap.htm&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MApCustomerCompany:&lt;/P&gt;&lt;P&gt;MAPPING Load&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;CustomerCompany,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Actual2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;FROM YourSource;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;FACT&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;CustomerCompany,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;If(len(Trim(Region))=0, Applymap('&lt;SPAN style="font-size: 13.3333px;"&gt;MApCustomerCompany',&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;CustomerCompany&lt;/STRONG&gt;),Region) as Region,&amp;nbsp;&amp;nbsp; // Note &lt;STRONG style="font-size: 13.3333px;"&gt;CustomerCompany is the field reference from FACT table, if in FACT &lt;STRONG style="font-size: 13.3333px;"&gt;CustomerCompany was say CCompany then the condition would have been as follows&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;If(len(Trim(Region))=0, Applymap('&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;MApCustomerCompany',&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;CCompany&lt;/STRONG&gt;),Region) as Region,&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2017 11:10:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230164#M861634</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-01-11T11:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need Assistance</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230165#M861635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vineeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. I tried working on this, but still it did not get mapped and the Regions are blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 08:58:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230165#M861635</guid>
      <dc:creator />
      <dc:date>2017-01-12T08:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need Assistance</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230166#M861636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please share sample data that replicates your scenario as the excel you attached has no null values to be mapped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share sample app or data that closely replicates thae data sets which you are working with&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-1290"&gt;Preparing examples for Upload - Reduction and Data Scrambling&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 09:05:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230166#M861636</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-01-12T09:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need Assistance</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230167#M861637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vineeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached the sample data. In this sheet column A is Region and Column B is Customer Company and Column C is Country. I use Country to map Regions. But If you filter, you can see that Region is blank for some rows because Country is not updated. So when Region is blank, I should be able to use Column B i. e customer company and map the regions as per the Regions Excel that I attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 09:22:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230167#M861637</guid>
      <dc:creator />
      <dc:date>2017-01-12T09:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need Assistance</title>
      <link>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230168#M861638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it, It is working fine for me-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TAB1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mapping&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD custcomp, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Actual2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;D&gt;&lt;/D&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is [As Per Customer Company]);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TAB2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Region, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Customer Company], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Country ,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNull(Region), ApplyMap('TAB1',[Customer Company],'No Region'),Region) AS RegionNew&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;D&gt;&lt;/D&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is TB01_20170111_142716);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 10:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-Assistance/m-p/1230168#M861638</guid>
      <dc:creator>tyagishaila</dc:creator>
      <dc:date>2017-01-12T10:48:26Z</dc:date>
    </item>
  </channel>
</rss>

