<?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 Alternate state - how to use GetFieldSelection in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Alternate-state-how-to-use-GetFieldSelection/m-p/536221#M1139326</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Throughout my document I'm using &amp;lt;default state&amp;gt; for a selected Forecast Type.&lt;/P&gt;&lt;P&gt;The List box for this field is set to Always one selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However in one of the tabs I'm trying to compare the values of two forecast types.&lt;/P&gt;&lt;P&gt;To get this done I've set up an alternate state &amp;lt;Forecast Type II&amp;gt;.&lt;/P&gt;&lt;P&gt;I've added another list box so a second Forecast Type can be selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far so good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using a straight table to compare values of the choosen forecast types.&lt;/P&gt;&lt;P&gt;For the column header of the &amp;lt;default state&amp;gt; using GetFieldSelections() will give me the selected forecast Type.&lt;/P&gt;&lt;P&gt;But what do I need to do to retrieve the selected forecast type from the alternate state?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Sep 2013 14:05:49 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-09-18T14:05:49Z</dc:date>
    <item>
      <title>Alternate state - how to use GetFieldSelection</title>
      <link>https://community.qlik.com/t5/QlikView/Alternate-state-how-to-use-GetFieldSelection/m-p/536221#M1139326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Throughout my document I'm using &amp;lt;default state&amp;gt; for a selected Forecast Type.&lt;/P&gt;&lt;P&gt;The List box for this field is set to Always one selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However in one of the tabs I'm trying to compare the values of two forecast types.&lt;/P&gt;&lt;P&gt;To get this done I've set up an alternate state &amp;lt;Forecast Type II&amp;gt;.&lt;/P&gt;&lt;P&gt;I've added another list box so a second Forecast Type can be selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far so good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using a straight table to compare values of the choosen forecast types.&lt;/P&gt;&lt;P&gt;For the column header of the &amp;lt;default state&amp;gt; using GetFieldSelections() will give me the selected forecast Type.&lt;/P&gt;&lt;P&gt;But what do I need to do to retrieve the selected forecast type from the alternate state?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 14:05:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternate-state-how-to-use-GetFieldSelection/m-p/536221#M1139326</guid>
      <dc:creator />
      <dc:date>2013-09-18T14:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate state - how to use GetFieldSelection</title>
      <link>https://community.qlik.com/t5/QlikView/Alternate-state-how-to-use-GetFieldSelection/m-p/536222#M1139327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Getfieldselections doesn't support alternate states. You can try using the concat function instead:&lt;/P&gt;&lt;P&gt;concat({[MyState]} distinct MyField, ','). If you have only one selected value then only({[MyState]} MyField) works too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 14:24:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternate-state-how-to-use-GetFieldSelection/m-p/536222#M1139327</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-09-18T14:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate state - how to use GetFieldSelection</title>
      <link>https://community.qlik.com/t5/QlikView/Alternate-state-how-to-use-GetFieldSelection/m-p/2041403#M1222738</link>
      <description>&lt;P&gt;So happy I found this - solved my chart issue!&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 11:43:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternate-state-how-to-use-GetFieldSelection/m-p/2041403#M1222738</guid>
      <dc:creator>BenjaminCoe1440</dc:creator>
      <dc:date>2023-02-23T11:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Alternate state - how to use GetFieldSelection</title>
      <link>https://community.qlik.com/t5/QlikView/Alternate-state-how-to-use-GetFieldSelection/m-p/2484111#M1226143</link>
      <description>&lt;P&gt;Actually, GetFieldSelections support alternate states. You can try with:&lt;/P&gt;
&lt;P&gt;GetFieldSelections(MyField, ', ', 3, 'MyState').&lt;/P&gt;
&lt;P&gt;', ' is the separator and 3 tt&lt;SPAN&gt;he maximum number of field values to be individually listed&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 17:43:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternate-state-how-to-use-GetFieldSelection/m-p/2484111#M1226143</guid>
      <dc:creator>enozagar</dc:creator>
      <dc:date>2024-09-27T17:43:28Z</dc:date>
    </item>
  </channel>
</rss>

