<?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: Dynamic multi-value selection and Add Selection to Sheet block in Qlik Automate</title>
    <link>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518817#M5887</link>
    <description>&lt;P&gt;The different tools and their various sub-parts are not a homogenous environment else a patchwork of different programming-languages, frameworks/libraries, developer from different periods against&amp;nbsp;heterogenous requirements and this leads&amp;nbsp;unfortunately to various side-effects ...&lt;/P&gt;</description>
    <pubDate>Fri, 23 May 2025 08:19:35 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2025-05-23T08:19:35Z</dc:date>
    <item>
      <title>Dynamic multi-value selection and Add Selection to Sheet block</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518659#M5880</link>
      <description>&lt;P&gt;Hi there, I'm trying to generate a multi-page report where each page has its own set of selections. One of the fields to be filtered is "Posting Year-Month" and I dynamically determine its values in my Qlik Sense application's script and set them in a variable which, to be more specific, now contains exactly the following value : "Jan 2025,Feb 2025,Mar 2025,Apr 2025" (quotation marks excluded, but I tried many different configuratons).&lt;/P&gt;&lt;P&gt;The problem is that I cannot find a way to apply these values as selections using "Add Selection to Sheet". I was pretty sure that changing the variable in ("Jan 2025"|"Feb 2025"|"Mar 2025"|"Apr 2025") would have worked but it didn't, so I prefered asking to the community.&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 14:04:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518659#M5880</guid>
      <dc:creator>AG-gugelbisolutions</dc:creator>
      <dc:date>2025-05-22T14:04:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic multi-value selection and Add Selection to Sheet block</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518723#M5882</link>
      <description>&lt;P&gt;Selecting multiple field-values with the syntax of: ("value 1"|"value 2") should be working. I suggest you check this manually in the UI against the field. If it's working copy the variable output and apply it also against the field. It's now not working then check the variable output more closely if it's really exact the same as manually written - maybe copying it into an editor like Notepad++ and compare it there against the manual stuff. If the variable output is ok but not working in the selection-action then is there something wrong with the call and needs there an extra quoting or equal-sign respectively the opposite.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 15:28:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518723#M5882</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-05-22T15:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic multi-value selection and Add Selection to Sheet block</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518726#M5883</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28038"&gt;@marcus_sommer&lt;/a&gt;&amp;nbsp;for the reply and for the advices too, even though they are already part of my daily "practice" and tricks.&lt;/P&gt;&lt;P&gt;I solved the issue by enabling &lt;U&gt;"Raw input"&lt;/U&gt; and passing a list of numbers representing the year-month (the first day actually) I need to select. For example&lt;/P&gt;&lt;P class="lia-align-center"&gt;[&lt;SPAN&gt;"45292","45323","45352","45383"&lt;/SPAN&gt;]&lt;/P&gt;&lt;P&gt;I don't know exactly why a selection of a single value (like "Apr 2025) works, while a multi-value needs to be modified as shown, but it works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 16:15:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518726#M5883</guid>
      <dc:creator>AG-gugelbisolutions</dc:creator>
      <dc:date>2025-05-22T16:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic multi-value selection and Add Selection to Sheet block</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518773#M5885</link>
      <description>&lt;P&gt;Using only pure numbers for all kind of calculations, comparing or matching is in general "best practice" because it avoids all the interpretation/converting-efforts which are often not so obvious and simple as it look like - especially because they are then depending of their context.&lt;/P&gt;&lt;P&gt;This means the same task may require different transformation-statements and syntaxes depending if it's used within a dimension, expression, set statement, variable, action ... whereby the pure numbers are working without any extra efforts everywhere.&lt;/P&gt;&lt;P&gt;Beside using the number of a date from the first day you may also query an appropriate period-information, like:&lt;/P&gt;&lt;P&gt;year(Date) * 100 + month(Date) as Period100,&lt;BR /&gt;year(Date) * 12 + month(Date) as Period12&lt;/P&gt;&lt;P&gt;and the&amp;nbsp;Period12 enables also the &amp;gt;= or &amp;lt;= comparing from min/max/current-period - n offset-periods without the need of the advanced date-functions (surely working and useful but also adding complexity).&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 05:53:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518773#M5885</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-05-23T05:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic multi-value selection and Add Selection to Sheet block</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518802#M5886</link>
      <description>&lt;P&gt;Yes, I agree; the only thing I don't understand is why I need to deal with the numbers "behind" the dates in the context of automations while I don't need it in the context of analytics. I was expecting to be able to use the same search string.&lt;/P&gt;&lt;P&gt;Have a nice day&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 07:31:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518802#M5886</guid>
      <dc:creator>AG-gugelbisolutions</dc:creator>
      <dc:date>2025-05-23T07:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic multi-value selection and Add Selection to Sheet block</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518817#M5887</link>
      <description>&lt;P&gt;The different tools and their various sub-parts are not a homogenous environment else a patchwork of different programming-languages, frameworks/libraries, developer from different periods against&amp;nbsp;heterogenous requirements and this leads&amp;nbsp;unfortunately to various side-effects ...&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 08:19:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Dynamic-multi-value-selection-and-Add-Selection-to-Sheet-block/m-p/2518817#M5887</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-05-23T08:19:35Z</dc:date>
    </item>
  </channel>
</rss>

