<?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 Macro - Select all but in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193028#M505328</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks very much Rakesh and Nmiller, I tried the SelectExcluded option and it does work perfectly!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Sep 2009 21:05:04 GMT</pubDate>
    <dc:creator>camilo</dc:creator>
    <dc:date>2009-09-21T21:05:04Z</dc:date>
    <item>
      <title>Macro - Select all but</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193025#M505325</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;I´m Trying to make a macro that selects everything except one tipe of field.&lt;/P&gt;&lt;P&gt;Right now I know if I want to select that one field I have to use:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sub Reempaque&lt;BR /&gt; ActiveDocument.Fields("Variedad").Clear&lt;BR /&gt; ActiveDocument.Fields("Variedad").Select("Reempaque")&lt;BR /&gt;end sub&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;But I want to select all the other fields but "Reempaque" what do I have to use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2009 20:31:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193025#M505325</guid>
      <dc:creator>camilo</dc:creator>
      <dc:date>2009-09-21T20:31:28Z</dc:date>
    </item>
    <item>
      <title>Macro - Select all but</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193026#M505326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use ToggleSelect to unselect a selected value.&lt;/P&gt;&lt;P&gt;So if you use:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sub Reempaque&lt;BR /&gt; ActiveDocument.Fields("Variedad").SelectAll&lt;BR /&gt; ActiveDocument.Fields("Variedad").ToggleSelect("Reempaque")&lt;BR /&gt;end sub&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;EM&gt;&lt;EM&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2009 20:39:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193026#M505326</guid>
      <dc:creator />
      <dc:date>2009-09-21T20:39:59Z</dc:date>
    </item>
    <item>
      <title>Macro - Select all but</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193027#M505327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sub AllOtherThenReempaque&lt;BR /&gt; ActiveDocument.Fields("Variedad").Clear&lt;BR /&gt; ActiveDocument.Fields("Variedad").Select("Reempaque")&lt;BR /&gt; ActiveDocument.Fields("Variedad").SelectExcluded&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2009 20:43:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193027#M505327</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2009-09-21T20:43:02Z</dc:date>
    </item>
    <item>
      <title>Macro - Select all but</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193028#M505328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks very much Rakesh and Nmiller, I tried the SelectExcluded option and it does work perfectly!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Sep 2009 21:05:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193028#M505328</guid>
      <dc:creator>camilo</dc:creator>
      <dc:date>2009-09-21T21:05:04Z</dc:date>
    </item>
    <item>
      <title>Macro - Select all but</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193029#M505329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried just this below to create a macro. This selects all items in a the field. However I want to be able to just pick 1 item, any item in that field. However I cannot name a specific one because that will always be different. Any ideas on how to just get it to pick one, maybe the first in the list?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;function&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.Fields(&lt;/P&gt;&lt;P&gt;"ResidentName").ToggleSelect("*")&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; Select()&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Oct 2009 02:36:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Select-all-but/m-p/193029#M505329</guid>
      <dc:creator />
      <dc:date>2009-10-10T02:36:14Z</dc:date>
    </item>
  </channel>
</rss>

