<?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: bookmark alternate state in GetSelectedCount method in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769157#M1022855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, not in the Get* functions. You will have to use a regular count or concat expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Mar 2015 14:35:43 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2015-03-10T14:35:43Z</dc:date>
    <item>
      <title>bookmark alternate state in GetSelectedCount method</title>
      <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769149#M1022845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Helo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use a bookmark's alternate state in &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;GetSelectedCount method?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;GetSelectedCount (Field1) returns count of selected Field1 values&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;GetSelectedCount (Field1, 'false', 'AltSt1') returns count of selected Field1 values in alternate state AltSt1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I want to get count of selected Field1 values in alternate state AltSt1 in bookmark BM01.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I tried &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;GetSelectedCount (Field1, 'false', 'AltSt1::BM01') but that doesnt return any value.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Is there a different syntax?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;VJ&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 19:41:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769149#M1022845</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-09T19:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: bookmark alternate state in GetSelectedCount method</title>
      <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769150#M1022846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;GetSelectedCount(),GetFieldSelections(),etc functions will not work with Alternate States.&lt;/P&gt;&lt;P&gt;to get its count you can use like below&lt;/P&gt;&lt;P&gt;substringcount(concat(alternateStateField,'|'),|)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siindu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 10:19:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769150#M1022846</guid>
      <dc:creator>sindu_bharathi</dc:creator>
      <dc:date>2015-03-10T10:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: bookmark alternate state in GetSelectedCount method</title>
      <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769151#M1022847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use of Alternate States in the GetSelectedCount function is available in QV 11.2 SR8 and newer. But &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;AltSt1::BM01 is set analysis syntax. Set analysis is not supported in the Get* functions afaik.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 12:32:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769151#M1022847</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-10T12:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: bookmark alternate state in GetSelectedCount method</title>
      <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769152#M1022848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So how is &lt;SPAN style="font-size: 13.3333330154419px;"&gt;bookmark's alternate state handled in get functions? Or &lt;/SPAN&gt;is usage of bookmark's alternate state not supported in &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;GetSelectedCount function?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 14:06:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769152#M1022848</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-10T14:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: bookmark alternate state in GetSelectedCount method</title>
      <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769153#M1022849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Bookmarks don't have alternate states&lt;/SPAN&gt;. &lt;/P&gt;&lt;P&gt;edit: well, that could be argued either way I suppose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 14:12:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769153#M1022849</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-10T14:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: bookmark alternate state in GetSelectedCount method</title>
      <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769154#M1022850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apparently they do. When a bookmark is saved, all states are saved and we can refer individual states within a bookmark using &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;AltSt1::BM01 syntax in set analysis. So far it looks like this is not possible in get methods.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 14:16:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769154#M1022850</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-10T14:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: bookmark alternate state in GetSelectedCount method</title>
      <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769155#M1022851</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;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; background-color: #f6f6f6;"&gt;AltSt1::BM01 &lt;STRONG&gt;syntax in set analysis&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Like you said and as I said earlier: &lt;STRONG&gt;in set analysis&lt;/STRONG&gt;. The Get* functions &lt;STRONG&gt;do not support&lt;/STRONG&gt; set analysis.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 14:31:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769155#M1022851</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-10T14:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: bookmark alternate state in GetSelectedCount method</title>
      <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769156#M1022853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand that. Thank you. Just wondering if there is any other syntax I could use in get functions to refer bookmark's alternate state.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 14:34:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769156#M1022853</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-10T14:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: bookmark alternate state in GetSelectedCount method</title>
      <link>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769157#M1022855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, not in the Get* functions. You will have to use a regular count or concat expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Mar 2015 14:35:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/bookmark-alternate-state-in-GetSelectedCount-method/m-p/769157#M1022855</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-10T14:35:43Z</dc:date>
    </item>
  </channel>
</rss>

