<?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 Data Modelling - Doubts ; Required Guidance in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Data-Modelling-Doubts-Required-Guidance/m-p/2136210#M92341</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I am new to qliksesnse, below are the list of questions, that i have doubts after trying. Could you please guide.&lt;/P&gt;
&lt;P&gt;1. let suppose we've multiple files, having duplicate values, now i want to load all the files into one.&lt;BR /&gt;Can we use link table for that ? or, is there any other way ?&amp;nbsp; Attaching QVF for the same .&lt;/P&gt;
&lt;P&gt;2. I have 2 tables having the same structure. Now i want to remove the duplicate values and load both the tables into one. How to do that ?&amp;nbsp;Attaching QVF for the same .&lt;/P&gt;
&lt;P&gt;3. When I have multiple Fact tables in QlikView, it can be handled in 2 ways, by using&lt;BR /&gt;concatenate or by using Link tables. Can you please help me to understand with an example.&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Ranjana&lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2024 21:15:44 GMT</pubDate>
    <dc:creator>Ranjanac</dc:creator>
    <dc:date>2024-11-15T21:15:44Z</dc:date>
    <item>
      <title>Data Modelling - Doubts ; Required Guidance</title>
      <link>https://community.qlik.com/t5/App-Development/Data-Modelling-Doubts-Required-Guidance/m-p/2136210#M92341</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I am new to qliksesnse, below are the list of questions, that i have doubts after trying. Could you please guide.&lt;/P&gt;
&lt;P&gt;1. let suppose we've multiple files, having duplicate values, now i want to load all the files into one.&lt;BR /&gt;Can we use link table for that ? or, is there any other way ?&amp;nbsp; Attaching QVF for the same .&lt;/P&gt;
&lt;P&gt;2. I have 2 tables having the same structure. Now i want to remove the duplicate values and load both the tables into one. How to do that ?&amp;nbsp;Attaching QVF for the same .&lt;/P&gt;
&lt;P&gt;3. When I have multiple Fact tables in QlikView, it can be handled in 2 ways, by using&lt;BR /&gt;concatenate or by using Link tables. Can you please help me to understand with an example.&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Ranjana&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:15:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-Modelling-Doubts-Required-Guidance/m-p/2136210#M92341</guid>
      <dc:creator>Ranjanac</dc:creator>
      <dc:date>2024-11-15T21:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Data Modelling - Doubts ; Required Guidance</title>
      <link>https://community.qlik.com/t5/App-Development/Data-Modelling-Doubts-Required-Guidance/m-p/2136262#M92346</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For 1 :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try this with JOIN&lt;/P&gt;
&lt;P&gt;Sales:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;StoreID, ProductID, Sales, BudgetQty, BudgetValue&lt;BR /&gt;1, 1, 5, 90%, 50&lt;BR /&gt;1, 2, 6, 50%, 47&lt;BR /&gt;2, 1, 5, 95%, 41&lt;BR /&gt;2, 2, 4, 20%, 27&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;Profit:&lt;BR /&gt;join LOAD * INLINE [&lt;BR /&gt;StoreID, ProductID, Profit, BudgetQty, BudgetValue&lt;BR /&gt;1, 1, 5, 90%, 50&lt;BR /&gt;1, 2, 6, 50%, 47&lt;BR /&gt;2, 1, 5, 95%, 41&lt;BR /&gt;2, 2, 4, 20%, 27&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;Budget:&lt;BR /&gt;join LOAD * INLINE [&lt;BR /&gt;StoreID, ProductID, Budget%, BudgetQty, BudgetValue&lt;BR /&gt;1, 1, 5, 90%, 50&lt;BR /&gt;1, 2, 6, 50%, 47&lt;BR /&gt;2, 1, 5, 95%, 41&lt;BR /&gt;2, 2, 4, 20%, 27&lt;BR /&gt;];&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2023 12:16:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-Modelling-Doubts-Required-Guidance/m-p/2136262#M92346</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2023-11-09T12:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data Modelling - Doubts ; Required Guidance</title>
      <link>https://community.qlik.com/t5/App-Development/Data-Modelling-Doubts-Required-Guidance/m-p/2136281#M92348</link>
      <description>&lt;P&gt;Everything in Qlik should start with a star-scheme data-model which means having a single (vertically and/or horizontally) merged fact-table (field-names and data-structures as harmonized as possible) and n surrounding dimension-tables.&lt;/P&gt;
&lt;P&gt;There may a lot of challenges to match everything but all this work needs to be done independently of the data-model. In the end there may scenarios in which it's suitable to extend the star-scheme or very rarely to replace it with another data-model but nothing is so simple and fast developed as a star-scheme to validate data and logic and creating the first views.&lt;/P&gt;
&lt;P&gt;Beside this are duplicates not mandatory an error else it could be valide data. Removing duplicates might a simple load distinct are doing. For a bit more complex scenarios you will need any unique identifier to flag them or removing them - very powerful would be exists() in this matter.&lt;/P&gt;
&lt;P&gt;I suggest you just starts with playing with some sub-sets and concatenating the facts - and then step by step applying all harmonizing/cleaning/preparing tasks.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2023 12:50:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Data-Modelling-Doubts-Required-Guidance/m-p/2136281#M92348</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-11-09T12:50:04Z</dc:date>
    </item>
  </channel>
</rss>

