<?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: Apply action on Button with Variable Input in Qlik Automate</title>
    <link>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489400#M5012</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/315890"&gt;@LK13&lt;/a&gt;&amp;nbsp; Solution I provided is not button solution it is calculated dimension solution for vendor dimension?&lt;/P&gt;</description>
    <pubDate>Mon, 28 Oct 2024 09:27:33 GMT</pubDate>
    <dc:creator>Kushal_Chawda</dc:creator>
    <dc:date>2024-10-28T09:27:33Z</dc:date>
    <item>
      <title>Apply action on Button with Variable Input</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489191#M4990</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I have defined a variable : vPercentPerVendor&lt;/P&gt;
&lt;P&gt;I have placed a variable input with Input Box (so i can choose % from 0 - 100 (0.0 - 1))&lt;/P&gt;
&lt;P&gt;I have placed a button and added action. Action is select value in the field (Field is dimension Vendor) with following expression:&amp;nbsp;count(DISTINCT sale_service_id) / count( Total DISTINCT sale_service_id) &amp;gt; $(vPercentOfTotalPerVendor).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Down below i have table with following fields: Vendor, Count (Distinct sale_service_id) and % of each Vendor in total count.&lt;/P&gt;
&lt;P&gt;Idea is to represent vendors with 10 % or any higher %&amp;nbsp;in relation to the total (which is 100 %).&lt;/P&gt;
&lt;P&gt;I Attached SC.&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2024 13:44:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489191#M4990</guid>
      <dc:creator>LK13</dc:creator>
      <dc:date>2024-10-25T13:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Apply action on Button with Variable Input</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489202#M4991</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/315890"&gt;@LK13&lt;/a&gt;&amp;nbsp; You can create calculated dimension for vendor as below. Then check suppress null value option for this calculated dimension&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;=aggr(if( 
count(DISTINCT sale_service_id) / count( Total DISTINCT sale_service_id) &amp;gt; $(vPercentOfTotalPerVendor),Vendor),
Vendor)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2024 14:15:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489202#M4991</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2024-10-25T14:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Apply action on Button with Variable Input</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489389#M5010</link>
      <description>&lt;P&gt;Something is wrong, it just doesn't show the expected results. Maybe my approach via&lt;SPAN&gt;&amp;nbsp;"select value in the field"&lt;/SPAN&gt; is completely wrong, I'm not sure.&lt;/P&gt;
&lt;P&gt;Anyway , thank you Kushal very much !&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2024 08:50:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489389#M5010</guid>
      <dc:creator>LK13</dc:creator>
      <dc:date>2024-10-28T08:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: Apply action on Button with Variable Input</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489400#M5012</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/315890"&gt;@LK13&lt;/a&gt;&amp;nbsp; Solution I provided is not button solution it is calculated dimension solution for vendor dimension?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2024 09:27:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489400#M5012</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2024-10-28T09:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Apply action on Button with Variable Input</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489604#M5016</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;Actually you are absolutely correct. This approach work. I will just get rid of button and will leave only variable input. So yes calculated dimension will suppress null() and will work as expected.&lt;/P&gt;
&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2024 07:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489604#M5016</guid>
      <dc:creator>LK13</dc:creator>
      <dc:date>2024-10-29T07:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Apply action on Button with Variable Input</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489647#M5017</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/315890"&gt;@LK13&lt;/a&gt;&amp;nbsp; Please accept the appropriate reply as solution if it helped.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2024 10:24:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Apply-action-on-Button-with-Variable-Input/m-p/2489647#M5017</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2024-10-29T10:24:30Z</dc:date>
    </item>
  </channel>
</rss>

