<?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: Displaying The Data in the Dashboard in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52654#M8749</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your response Jonathan, Along with the common fields i have some other fields as well which are different between two systems and currently the data model is being joined using left join between &lt;SPAN style="font-size: 13.3333px;"&gt;Prod and QA and number of fields are also different here and there.&lt;/SPAN&gt; So I think i can not do concatenate here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jun 2018 15:58:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-06-04T15:58:02Z</dc:date>
    <item>
      <title>Displaying The Data in the Dashboard</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52650#M8745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;SPAN style="color: #000000;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;In my Qlik Dashboard I have common data from two different systems but the field names are different, like&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;&lt;STRONG&gt;Two Different Systems are Prod and QA&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Prod fields are coming as P_Code, P_Name,P_Address......etc and QA fields are coming as Code, Name, Address......etc&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10pt;"&gt;I am using all these fields across my dashboard in charts and as filters as well and I have a &lt;STRONG&gt;field called Source which contains Prod and QA, from this when i select Prod all the objects in the dashboard should reflect with the Prod data and same as with QA selection as well.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;I know we have several ways to achieve this.Currently I am thinking on below two options.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;1) One is using with GetFieldSelctions function/If clause -- This one I have to use on each object&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt; 2) Second one is create separate tab for each source and display it conditionally -- Here all the objects will be created twice.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Here i just want to know which option is good in terms of performance. Please let me know if we have any other way to do this.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 15:17:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52650#M8745</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-04T15:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying The Data in the Dashboard</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52651#M8746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use a variable which prepends any field that contains "P_" or nothing, like "" or even Null().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But for the sake of performance, I would load all data in the same fields, and create a new one in the script as "Source" where you store either PROD or QA. Then you can use this flag in the set analysis of the charts to distinguish which data do you want to display. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While it may look like a lot of effort in development, you are saving a lot of space and memory, assuming PROD and QA are equivalent in amounts of data, you are currently loading everything twice. Set analysis is very efficient for this type of filtering, and chances are that especially dimensional data have the same values in both systems and therefore can be stored only once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's also best for maintenance, in case there is a new field, you only need to add it in the script and the charts, instead of twice in the script and also twice in each chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 15:23:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52651#M8746</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-06-04T15:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying The Data in the Dashboard</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52652#M8747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand you correctly, neither of these options would be best practice and unnecessarily complex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would alias the fields so that the names of equivalent fields in the two systems re the same, then concatenate the data. Use the Source field as you have described. Then if you select Prod from source, you will get the results for Prod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 15:27:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52652#M8747</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2018-06-04T15:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying The Data in the Dashboard</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52653#M8748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Miguel for the response, I am bit confused on below could you please elaborate &lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;But for the sake of performance, I would load all data in the same fields, and create a new one in the script as "Source" where you store either PROD or QA. &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 15:46:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52653#M8748</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-04T15:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying The Data in the Dashboard</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52654#M8749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your response Jonathan, Along with the common fields i have some other fields as well which are different between two systems and currently the data model is being joined using left join between &lt;SPAN style="font-size: 13.3333px;"&gt;Prod and QA and number of fields are also different here and there.&lt;/SPAN&gt; So I think i can not do concatenate here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 15:58:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52654#M8749</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-04T15:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying The Data in the Dashboard</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52655#M8750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't need to exactly match the fields for a forced concatenation using the Concatenate() load modifier. However, it is hard to say whether concatenation or joining is the better approach without knowing more about your data and the analysis you wish to perform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 05:48:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52655#M8750</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2018-06-05T05:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying The Data in the Dashboard</title>
      <link>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52656#M8751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In short, what Jonathan is already suggesting: concatenate both tables and use the Source field (or use a more refined one if it does not exist already) in the front-end as a selection or in the expressions (e.g.: set analysis) to decide which data source you want to display.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2018 07:05:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Displaying-The-Data-in-the-Dashboard/m-p/52656#M8751</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-06-05T07:05:07Z</dc:date>
    </item>
  </channel>
</rss>

