<?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: Help with Formula in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Help-with-Formula/m-p/2512591#M105231</link>
    <description>&lt;P&gt;it didnt work &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Apr 2025 13:28:49 GMT</pubDate>
    <dc:creator>Nemo1</dc:creator>
    <dc:date>2025-04-01T13:28:49Z</dc:date>
    <item>
      <title>Help with Formula</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Formula/m-p/2510861#M104969</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;The situation is the following...&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a dimension that has 7 different variables, and I have a measure, and I need to create a Pivot Table out of them, which only needs to be applied to one specific store.&lt;/P&gt;&lt;P&gt;The variables from the dimension in the Pivot need to follow an specific order.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This should be the order:&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;First variable is a currency&lt;/LI&gt;&lt;LI&gt;Second is currency&lt;/LI&gt;&lt;LI&gt;Third is %&lt;/LI&gt;&lt;LI&gt;Fourth is just a number&lt;/LI&gt;&lt;LI&gt;Fifth is a number&lt;/LI&gt;&lt;LI&gt;Sitxh is a number&lt;/LI&gt;&lt;LI&gt;The last one is a currency.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far I have this formula, which only helped me to correctly sort the variables from the dimension ir oder, and to filter by the store... The problem is, that all my dimensions appear just as numbers, and I need to have them, either as % or currency or just a number...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Len(Trim(YourDimension)) &amp;gt; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND Match(YourDimension, 'Value1', 'Value2', 'Value3')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND Match(Store, 'StoreA'),&amp;nbsp; // Filtering only for 'StoreA'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual(YourDimension, Match(YourDimension, 'Value1', 'Value2', 'Value3'))&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i would appreciate some help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 15:19:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Formula/m-p/2510861#M104969</guid>
      <dc:creator>Nemo1</dc:creator>
      <dc:date>2025-03-20T15:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Formula</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Formula/m-p/2510872#M104970</link>
      <description>&lt;P&gt;Try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;If(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Len(Trim(YourDimension)) &amp;gt; 0&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; AND Match(Store, 'StoreA'), // Filtering only for 'StoreA'&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Dual(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; YourDimension,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Match(YourDimension,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Currency1',&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Currency2',&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Percentage',&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Number1',&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Number2',&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Number3',&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Currency3'&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; )&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 16:32:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Formula/m-p/2510872#M104970</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-03-20T16:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Formula</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Formula/m-p/2512591#M105231</link>
      <description>&lt;P&gt;it didnt work &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 13:28:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Formula/m-p/2512591#M105231</guid>
      <dc:creator>Nemo1</dc:creator>
      <dc:date>2025-04-01T13:28:49Z</dc:date>
    </item>
  </channel>
</rss>

