<?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: I want to only show records that have specific values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800041#M661496</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the script you can use match to load only records with these values, something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * from....where match(MyField,'A','C')&amp;gt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively in the front end, you can use &lt;SPAN style="font-size: 13.3333330154419px;"&gt;an expression with MyField as Dimension&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Only({&amp;lt;MyField={'A','C'}&amp;gt;} MyField) &lt;/P&gt;&lt;P&gt;or as Dimension&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Aggr(Only({&amp;lt;MyField={'A','C'}&amp;gt;} MyField),MyField)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Mar 2015 15:38:26 GMT</pubDate>
    <dc:creator>stigchel</dc:creator>
    <dc:date>2015-03-26T15:38:26Z</dc:date>
    <item>
      <title>I want to only show records that have specific values</title>
      <link>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800040#M661495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Field in my dashboard that I would like to filter multiple strings of potential results. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking that the match function may be able to assist me here, but am I on the right track? If so, how would I go about only including records with A and C within a straight table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Header 1&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Header 2&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Header 3&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Project Requesting Office&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;STRONG&gt;A&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;STRONG&gt;C&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;STRONG&gt;A&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Myles&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 15:15:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800040#M661495</guid>
      <dc:creator />
      <dc:date>2015-03-26T15:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: I want to only show records that have specific values</title>
      <link>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800041#M661496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the script you can use match to load only records with these values, something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * from....where match(MyField,'A','C')&amp;gt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively in the front end, you can use &lt;SPAN style="font-size: 13.3333330154419px;"&gt;an expression with MyField as Dimension&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Only({&amp;lt;MyField={'A','C'}&amp;gt;} MyField) &lt;/P&gt;&lt;P&gt;or as Dimension&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Aggr(Only({&amp;lt;MyField={'A','C'}&amp;gt;} MyField),MyField)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 15:38:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800041#M661496</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-03-26T15:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: I want to only show records that have specific values</title>
      <link>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800042#M661497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Piet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I opted to use aggr as an expression. Is there a way to suppress those null values ("-")? This would return only the records in the straight table that matter me this particular ask. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Myles&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 16:18:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800042#M661497</guid>
      <dc:creator />
      <dc:date>2015-03-26T16:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: I want to only show records that have specific values</title>
      <link>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800043#M661498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the dimension tab set the suppress null values option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 16:36:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800043#M661498</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-03-26T16:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: I want to only show records that have specific values</title>
      <link>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800044#M661499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Piet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't think to use that because i thought that the aggr function would only work as an expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helping me out with this again!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Myles&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 16:53:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-want-to-only-show-records-that-have-specific-values/m-p/800044#M661499</guid>
      <dc:creator />
      <dc:date>2015-03-26T16:53:10Z</dc:date>
    </item>
  </channel>
</rss>

