<?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: Synthetic Dimension in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Synthetic-Dimension/m-p/2517021#M105863</link>
    <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;. Can you explain how the measure bit works?&lt;/P&gt;</description>
    <pubDate>Wed, 07 May 2025 15:00:45 GMT</pubDate>
    <dc:creator>Bob07</dc:creator>
    <dc:date>2025-05-07T15:00:45Z</dc:date>
    <item>
      <title>Synthetic Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Synthetic-Dimension/m-p/2517017#M105861</link>
      <description>&lt;P&gt;Hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please I need your help. I have a field called Region with values Asia, EMEA, Latin America &amp;amp; North America. I am showing the sales for each region over time on a line chart. Is it possible to create a 5th line that shows the total of all sales as "CompanyTotal" on the line chart? A sample of my data and line chart is shown below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bob07_0-1746628087709.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180300i8D7F5C03CCD8503B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bob07_0-1746628087709.png" alt="Bob07_0-1746628087709.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bob07_1-1746628151962.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/180301iDE3030541E205E18/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bob07_1-1746628151962.png" alt="Bob07_1-1746628151962.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 14:29:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Synthetic-Dimension/m-p/2517017#M105861</guid>
      <dc:creator>Bob07</dc:creator>
      <dc:date>2025-05-07T14:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Synthetic-Dimension/m-p/2517018#M105862</link>
      <description>&lt;P&gt;You can use value list&amp;nbsp;&lt;/P&gt;&lt;P&gt;=ValueList('Asia', 'EMEA', 'Latin America', 'North America', 'CompanyTotal')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And use measure&amp;nbsp; pick match for your expression&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then&amp;nbsp;&lt;/P&gt;&lt;P&gt;Plot one line for each region.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add a 5th line for the total across all regions (CompanyTotal).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 14:55:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Synthetic-Dimension/m-p/2517018#M105862</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-05-07T14:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Synthetic-Dimension/m-p/2517021#M105863</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;. Can you explain how the measure bit works?&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 15:00:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Synthetic-Dimension/m-p/2517021#M105863</guid>
      <dc:creator>Bob07</dc:creator>
      <dc:date>2025-05-07T15:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Synthetic Dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Synthetic-Dimension/m-p/2517115#M105875</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would do this in the data model by loading a new table that has all the dimension values in it for Region and then a second column Region With Total. Each region would link to itself and also to Total. This can be done in an INLINE load, or a RESIDENT load:&lt;/P&gt;&lt;P&gt;RegionWithTotal:&lt;BR /&gt;LOAD&lt;BR /&gt;&amp;nbsp; &amp;nbsp;Region,[Region With Total]&lt;BR /&gt;INLINE [&lt;BR /&gt;&lt;SPAN&gt;Region,Region With Total&lt;BR /&gt;Asia,Asia&lt;BR /&gt;Asia,Total&lt;BR /&gt;EMEA,EMEA&lt;BR /&gt;EMEA,Total&lt;BR /&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You can then simply use the Region With Total field as your dimension.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've done a blog post on this technique, and various other uses of the same approach:&lt;BR /&gt;&lt;A href="https://www.quickintelligence.co.uk/qlikview-accumulate-values/" target="_blank"&gt;https://www.quickintelligence.co.uk/qlikview-accumulate-values/&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hope that helps,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 10:47:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Synthetic-Dimension/m-p/2517115#M105875</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2025-05-08T10:47:30Z</dc:date>
    </item>
  </channel>
</rss>

