<?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 What does '*?' mean inside Set Analysis? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106722#M7263</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have Country={'*?'} as set analysis, what does '*?' mean please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And what does Country={'*'} mean?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And finally if it is, Sum({$-&amp;lt;Country={'*?'}&amp;gt;}Sales) what does this mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Sep 2018 12:20:13 GMT</pubDate>
    <dc:creator>jblomqvist</dc:creator>
    <dc:date>2018-09-25T12:20:13Z</dc:date>
    <item>
      <title>What does '*?' mean inside Set Analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106722#M7263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have Country={'*?'} as set analysis, what does '*?' mean please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And what does Country={'*'} mean?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And finally if it is, Sum({$-&amp;lt;Country={'*?'}&amp;gt;}Sales) what does this mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 12:20:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106722#M7263</guid>
      <dc:creator>jblomqvist</dc:creator>
      <dc:date>2018-09-25T12:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: What does '*?' mean inside Set Analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106723#M7264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can read about what wildcards mean here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/September2018/Subsystems/Hub/Content/Sense_Hub/Selections/SelectionsToolbar/search-selections.htm" style="font-size: 10pt;" title="https://help.qlik.com/en-US/sense/September2018/Subsystems/Hub/Content/Sense_Hub/Selections/SelectionsToolbar/search-selections.htm"&gt;https://help.qlik.com/en-US/sense/September2018/Subsystems/Hub/Content/Sense_Hub/Selections/SelectionsToolbar/search-selections.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using wildcards in a search in a set expression should be exactly the same - so even if the documentation is for how you use wildcards interactively it does apply for set expressions too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt; that searches in all the newer releases of Qlik Sense need to use double quotation marks to work. You have examples with single quotation marks which works in olde Qlik Sense versions but not the newer ones...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 12:32:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106723#M7264</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-09-25T12:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: What does '*?' mean inside Set Analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106724#M7265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;If you have Country={'*?'} as set analysis, what does '*?' mean please?&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;"*?" means any non-empty string (* means string of any lenght, ? means one character).&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;And what does Country={'*'} mean?&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This basicaly means any value in Country field (including empty strings, but not null values!)&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;And finally if it is, Sum({$-&amp;lt;Country={'*?'}&amp;gt;}Sales) what does this mean?&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I'm not 100% sure about this one, this would sum Sales for current selections (the $ sign) excluding all records with value in Country field (-&amp;lt;Country={'*?'}&amp;gt;), so in the end it could consider all records for current selections where Country=null.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 12:51:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106724#M7265</guid>
      <dc:creator>juraj_misina</dc:creator>
      <dc:date>2018-09-25T12:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: What does '*?' mean inside Set Analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106725#M7266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What if it was written as {'?*'}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I switched the ? to be in front of the * from my original example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 13:03:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106725#M7266</guid>
      <dc:creator>jblomqvist</dc:creator>
      <dc:date>2018-09-25T13:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: What does '*?' mean inside Set Analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106726#M7267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The meaning is exactly the same. ? and * are both wildcards where&lt;/P&gt;&lt;P&gt;"?" means exactly 1 character (e.g. Country = 'S' or Country = 'C')&lt;/P&gt;&lt;P&gt;"*" means any number of characters (e.g. Country ='S' or Country = 'C' or Country = 'Slovakia' or Country = '')&lt;/P&gt;&lt;P&gt;If you want to make sure that value Country field contains at least one character, then you can use "*?" or "?*". They are basically the same, because they mean "any number of characters followed by exactly one character" and "exactly one character followed by any number of characters" respectively.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 13:10:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/What-does-mean-inside-Set-Analysis/m-p/106726#M7267</guid>
      <dc:creator>juraj_misina</dc:creator>
      <dc:date>2018-09-25T13:10:36Z</dc:date>
    </item>
  </channel>
</rss>

