<?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: I need some help. in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13095#M941</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for more understanding can you explain with sample data???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Mar 2018 05:32:59 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2018-03-13T05:32:59Z</dc:date>
    <item>
      <title>I need some help.</title>
      <link>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13090#M936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;I have information about the productive process of our business.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Each table keeps specific information of the productive process that corresponds to it;&lt;/SPAN&gt; &lt;SPAN&gt;for example, in table1 stores information about process1, table2 about process2, etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Table 1&lt;BR /&gt;roll number, date in which it went through the process, cod_machine, cod_employee, weight&lt;BR /&gt;&lt;BR /&gt;Table2&lt;BR /&gt;roll number, date in which it went through the process, cod_machine, cod_employee, weight&lt;BR /&gt;&lt;BR /&gt;Table3&lt;BR /&gt;roll number, date in which it went through the process, cod_machine, cod_employee, weight&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;Table4 (Machine)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;cod_machine, machine, etc&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;Table5 (Employee)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;cod_employee, employee name, etc&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;I have created a dimensions of, machine, employee name, etc.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;BR /&gt;It could generate a single table that contains the information of all the processes, or it is better to have it separately.&lt;BR /&gt;&lt;BR /&gt;How can I get for each process how many rolls (products) were processed? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;How can I get for each machine how many rolls (products) were processed?&lt;BR /&gt;How can I get for each employee how many rolls (products) were processed?.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;And others....&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2018 17:33:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13090#M936</guid>
      <dc:creator>mfcelleri</dc:creator>
      <dc:date>2018-03-12T17:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: I need some help.</title>
      <link>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13091#M937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All your process tables seem to show the same structure, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would concatenate all process tables into one fact table then (either using CONCATENATE LOAD prefix or this should be done automatically by Qlik when loading your tables. Add a new field that identifies the process:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Processes:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Process 1' as process&lt;/P&gt;&lt;P&gt;FROM Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;CONCATENATE (Processes)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD *,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Process 2' as process&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM Table2;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2018 18:10:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13091#M937</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-03-12T18:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: I need some help.</title>
      <link>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13092#M938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;concatenate 1st 3 table with flag field. and other 2 table keep on association.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process:&lt;/P&gt;&lt;P&gt;Load *,'Process 1' as ProcessName from Table1;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Load *,'Process 2' as ProcessName from Table2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;concatenate&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Load *,'Process 3' as ProcessName from Table3;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;MachineDetails:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load * from Table4;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EmpDetails:&lt;/P&gt;&lt;P&gt;Load * from Table5;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In front end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take table&lt;/P&gt;&lt;P&gt;1:&lt;/P&gt;&lt;P&gt;dimension: ProcessName&lt;/P&gt;&lt;P&gt;expression: count(Products)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;dimension: Machine&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;expression: count(Products)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;3:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;dimension: EmployeeName&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;expression: count(Products)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2018 18:18:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13092#M938</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2018-03-12T18:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: I need some help.</title>
      <link>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13093#M939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;Thank you for your answers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Each table has different information, however the fields that I indicated in my example are common in each table;&lt;/SPAN&gt; of course it´s with different names.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does the concatenate of the tables work if they have different information?, a join works?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What happens for example if in a table I have two fields that refer to the machine and also to the employee ?, in that case how does qlik sense understand which of the fields should be considered?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;For example in the process table2 (this refers to the quality control), I have a field that tells me in which machine i was dried the cloth, and in another field it tells me in which machine the quality was checked.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When you want to filter by machine that dried the fabric or in which machine the quality was checked;&lt;/SPAN&gt; &lt;SPAN&gt;How would he do it?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2018 20:15:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13093#M939</guid>
      <dc:creator>mfcelleri</dc:creator>
      <dc:date>2018-03-12T20:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: I need some help.</title>
      <link>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13094#M940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use something like a canonical dimension:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3585"&gt;Canonical Date&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically you load your records twice, concatenating the two fields into one. Either do this in your fact table (duplicating the records) or create a separate table to link the canonical dimension to your facts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Latter is probably better if your fact table is containing a lot other fact fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC is demonstrating it for a canonical date dimension, but you can do the same for machines.&lt;/P&gt;&lt;P&gt;Just tag the machines in the canonical machine table with the usage (create a new field to distinguish 'washing', 'drying' etc.)&lt;/P&gt;&lt;P&gt;If you have a lot of these fields you need to concatenate in one of your tables, you can also use &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3628"&gt;The Crosstable Load&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2018 21:12:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13094#M940</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-03-12T21:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: I need some help.</title>
      <link>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13095#M941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for more understanding can you explain with sample data???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2018 05:32:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/I-need-some-help/m-p/13095#M941</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2018-03-13T05:32:59Z</dc:date>
    </item>
  </channel>
</rss>

