<?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: Star is * NOT in section access in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1603369#M596827</link>
    <description>&lt;P&gt;I believe Claudiu was correct in this case, here is the help, and the reference is Section Access, but I think it should apply outside of Section Access as well, but I had another case recently here on Community where Henric Cronstrom provided some additional info too.&amp;nbsp; Here is the Help link, which you may have already reviewed:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/November2018/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptRegularStatements/Star.htm" target="_blank"&gt;http://help.qlik.com/en-US/qlikview/November2018/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptRegularStatements/Star.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Article links:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.qlik.com/articles/000003749" target="_self"&gt;&lt;SPAN&gt;https://support.qlik.com/articles/000003749&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://support.qlik.com/articles/000059866" target="_self"&gt;https://support.qlik.com/articles/000059866&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hopefully those may shed a bit more light on things for you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jul 2019 19:42:29 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2019-07-17T19:42:29Z</dc:date>
    <item>
      <title>Star is * NOT in section access</title>
      <link>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1593128#M596823</link>
      <description>&lt;P&gt;I'm loading a spreadsheet to define "Clusters" which are based on a Product / Type combination, however, some of the combinations that are needed are "anything" for the Type.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;Product | Type | Cluster&lt;/P&gt;&lt;P&gt;P1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | T1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| Cluster1&lt;/P&gt;&lt;P&gt;P1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | *&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| CluterOther&lt;/P&gt;&lt;P&gt;So if P1 and T1 then "Cluster1" other wise all other Product P1 combinations with Type will be Cluster Other.&lt;/P&gt;&lt;P&gt;I tried using the Star is *; syntax, but it isn't working as expected.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have any experience with this type of requirement?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:38:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1593128#M596823</guid>
      <dc:creator>markmccoid</dc:creator>
      <dc:date>2024-11-16T20:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Star is * NOT in section access</title>
      <link>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1593336#M596824</link>
      <description>* means all the listed values, in your case only T1.&lt;BR /&gt;&lt;BR /&gt;You have to concatenate all the distinct values with the section Access table from which you read the data.</description>
      <pubDate>Wed, 19 Jun 2019 04:32:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1593336#M596824</guid>
      <dc:creator>Claudiu_Anghelescu</dc:creator>
      <dc:date>2019-06-19T04:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Star is * NOT in section access</title>
      <link>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1593350#M596825</link>
      <description>&lt;P&gt;The STAR is * syntax only applies to section access. If you need to do this outside of section access, you will need to transform the data in your load script. There are several possible ways of doing this, for example:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MAP_CLUSTERS:
Mapping LOAD * 
Inline
[
	Type, Cluster
	T1, Cluster1
	
];

LOAD
	....
	Product,
	Type,
	ApplyMap('MAP_CLUSTERS',Type, 'ClusterOther') as Cluster,
	....&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 19 Jun 2019 05:19:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1593350#M596825</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-06-19T05:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Star is * NOT in section access</title>
      <link>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1593819#M596826</link>
      <description>&lt;P&gt;That was the information I needed.&amp;nbsp; That it is only applicable in Section Access.&amp;nbsp; The docs didn't explicitly state this so I wanted to make sure.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 19:30:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1593819#M596826</guid>
      <dc:creator>markmccoid</dc:creator>
      <dc:date>2019-06-19T19:30:02Z</dc:date>
    </item>
    <item>
      <title>Re: Star is * NOT in section access</title>
      <link>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1603369#M596827</link>
      <description>&lt;P&gt;I believe Claudiu was correct in this case, here is the help, and the reference is Section Access, but I think it should apply outside of Section Access as well, but I had another case recently here on Community where Henric Cronstrom provided some additional info too.&amp;nbsp; Here is the Help link, which you may have already reviewed:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/November2018/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptRegularStatements/Star.htm" target="_blank"&gt;http://help.qlik.com/en-US/qlikview/November2018/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptRegularStatements/Star.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Article links:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.qlik.com/articles/000003749" target="_self"&gt;&lt;SPAN&gt;https://support.qlik.com/articles/000003749&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://support.qlik.com/articles/000059866" target="_self"&gt;https://support.qlik.com/articles/000059866&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hopefully those may shed a bit more light on things for you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 19:42:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Star-is-NOT-in-section-access/m-p/1603369#M596827</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-07-17T19:42:29Z</dc:date>
    </item>
  </channel>
</rss>

