<?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 Qlik Sense Dimension Selection in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Dimension-Selection/m-p/1969366#M79985</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am looking to create a filter that allows the user to select a single time frequency for a chart (or charts). Specifically, they would be able to chose from:&lt;/P&gt;
&lt;P&gt;Monthly&lt;/P&gt;
&lt;P&gt;Weekly&lt;/P&gt;
&lt;P&gt;Daily&lt;/P&gt;
&lt;P&gt;Day of Week&lt;/P&gt;
&lt;P&gt;We already have a Date Dimension table, with the relevant fields (in this case MonYear,&amp;nbsp;Week_Start_Date, DateValue, and&amp;nbsp;Day_Of_Week_Abbreviation. To be clear, I'm not looking to create a drill-down dimension. The user would be able to view measure on a Monthly, Week, etc. basis.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried a few ways, but they are either clunky or inconsistent. And a container which hides the unselected dimensions isn't very practical for this app.&amp;nbsp; Any suggestions?&lt;/P&gt;
&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Also, I don't want to use Alterative Dimensions in this case. There will be several charts on the sheet, and the goal is to apply the same dimension to them all for comparison purposes.)&lt;/P&gt;</description>
    <pubDate>Tue, 16 Aug 2022 20:53:42 GMT</pubDate>
    <dc:creator>cfountain72</dc:creator>
    <dc:date>2022-08-16T20:53:42Z</dc:date>
    <item>
      <title>Qlik Sense Dimension Selection</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Dimension-Selection/m-p/1969366#M79985</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am looking to create a filter that allows the user to select a single time frequency for a chart (or charts). Specifically, they would be able to chose from:&lt;/P&gt;
&lt;P&gt;Monthly&lt;/P&gt;
&lt;P&gt;Weekly&lt;/P&gt;
&lt;P&gt;Daily&lt;/P&gt;
&lt;P&gt;Day of Week&lt;/P&gt;
&lt;P&gt;We already have a Date Dimension table, with the relevant fields (in this case MonYear,&amp;nbsp;Week_Start_Date, DateValue, and&amp;nbsp;Day_Of_Week_Abbreviation. To be clear, I'm not looking to create a drill-down dimension. The user would be able to view measure on a Monthly, Week, etc. basis.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried a few ways, but they are either clunky or inconsistent. And a container which hides the unselected dimensions isn't very practical for this app.&amp;nbsp; Any suggestions?&lt;/P&gt;
&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Also, I don't want to use Alterative Dimensions in this case. There will be several charts on the sheet, and the goal is to apply the same dimension to them all for comparison purposes.)&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 20:53:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Dimension-Selection/m-p/1969366#M79985</guid>
      <dc:creator>cfountain72</dc:creator>
      <dc:date>2022-08-16T20:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Dimension Selection</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Dimension-Selection/m-p/1969625#M80001</link>
      <description>&lt;P&gt;Such behaviour could be reached with a dimension-group. Within the first releases of Qlik Sense this feature wasn't included - nowadays I don't know if it's native available or if any extension exists for it.&lt;/P&gt;
&lt;P&gt;If not it could be solved with a variable or a selection, for example with an island-table, like:&lt;/P&gt;
&lt;P&gt;PeriodDimension:&lt;BR /&gt;load * inline [&lt;BR /&gt;PeriodDimension&lt;BR /&gt;Month&lt;BR /&gt;Week&lt;BR /&gt;Day&lt;BR /&gt;WeekDay&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;applied to a list-box with the always one selected setting and within the objects the dimension could be called with:&lt;/P&gt;
&lt;P&gt;[$(=PeriodDimension)]&lt;/P&gt;
&lt;P&gt;The values within the table must be of course identically to your field-names.&lt;/P&gt;
&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2022 10:43:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Dimension-Selection/m-p/1969625#M80001</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-08-17T10:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Dimension Selection</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Dimension-Selection/m-p/1969644#M80002</link>
      <description>&lt;P&gt;Works like charm. Thank you Marcus!&lt;/P&gt;
&lt;P&gt;That [$(=Something)]&amp;nbsp; syntax is not intuitive to me, but it seems to be pretty useful.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2022 11:26:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Dimension-Selection/m-p/1969644#M80002</guid>
      <dc:creator>cfountain72</dc:creator>
      <dc:date>2022-08-17T11:26:01Z</dc:date>
    </item>
  </channel>
</rss>

