<?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: Expression showing different on server in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103833#M365746</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think, I wasn't clear enough.. Just want you to right click on object&amp;gt;&amp;gt; go to &lt;STRONG&gt;properties&lt;/STRONG&gt; and in &lt;STRONG&gt;General Tab&lt;/STRONG&gt;.. look for the &lt;STRONG&gt;alternate state&lt;/STRONG&gt; (If you don't see Alternate state that means.. you have not created any alternate state..) and see what it is set to.. as in this case it is set to &lt;STRONG&gt;"inherited".&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/124241_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 May 2016 11:23:40 GMT</pubDate>
    <dc:creator>kamal_sanguri</dc:creator>
    <dc:date>2016-05-11T11:23:40Z</dc:date>
    <item>
      <title>Expression showing different on server</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103828#M365741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have this expression which is working fine locally:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =Only({$&amp;lt;Name={$(Selected)}&amp;gt;} [Demographics.Hobbies])&lt;/P&gt;&lt;P&gt;I'm hoping you can see what this is doing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Locally this gives the result:&lt;/P&gt;&lt;P&gt;&lt;A href="https://imgur.com/WoPN61h" title="https://imgur.com/WoPN61h"&gt;PIC1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this exact same object on the server seems to return null:&lt;/P&gt;&lt;P&gt;&lt;A href="https://imgur.com/rrVNmHj" title="https://imgur.com/rrVNmHj"&gt;PIC2&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone experienced something similar or can point me in the right direction for troubleshooting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;James.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2016 11:43:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103828#M365741</guid>
      <dc:creator>wallerjc</dc:creator>
      <dc:date>2016-05-09T11:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Expression showing different on server</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103829#M365742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure the documents contain the same data in both environments. And check that $(Selected) returns the same value in both environments. The only() function will only return a value if exactly one value is possible. In other cases you'll get a null.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 08:06:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103829#M365742</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-05-10T08:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Expression showing different on server</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103830#M365743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does your document have Section Access?&lt;/P&gt;&lt;P&gt;If yes, is the Distribution Service account included in the section access table with Admin access and no restrictions on data values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could try using maxstring instead of only as only will return null if there is more than 1 value returned.&lt;/P&gt;&lt;P&gt;=MaxString({$&amp;lt;Name={$(Selected)}&amp;gt;} [Demographics.Hobbies])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 08:13:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103830#M365743</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2016-05-10T08:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Expression showing different on server</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103831#M365744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thanks for your input.&lt;/P&gt;&lt;P&gt;I have verified the $(Selected) variable returns the same on both instances. Further, if I change the expression to remove the variable:&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; =Only({$&amp;lt;Name={'James'}&amp;gt;} [Demographics.Hobbies])&lt;/SPAN&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;I get the same result&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 08:59:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103831#M365744</guid>
      <dc:creator>wallerjc</dc:creator>
      <dc:date>2016-05-10T08:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Expression showing different on server</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103832#M365745</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;This can be because of Alternate state.. I have past experience of that, where a chart was looking absolutely fine on desktop.. but it wasn't visible at all in Access Point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;-Kamal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 09:08:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103832#M365745</guid>
      <dc:creator>kamal_sanguri</dc:creator>
      <dc:date>2016-05-10T09:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Expression showing different on server</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103833#M365746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think, I wasn't clear enough.. Just want you to right click on object&amp;gt;&amp;gt; go to &lt;STRONG&gt;properties&lt;/STRONG&gt; and in &lt;STRONG&gt;General Tab&lt;/STRONG&gt;.. look for the &lt;STRONG&gt;alternate state&lt;/STRONG&gt; (If you don't see Alternate state that means.. you have not created any alternate state..) and see what it is set to.. as in this case it is set to &lt;STRONG&gt;"inherited".&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/124241_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 May 2016 11:23:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-showing-different-on-server/m-p/1103833#M365746</guid>
      <dc:creator>kamal_sanguri</dc:creator>
      <dc:date>2016-05-11T11:23:40Z</dc:date>
    </item>
  </channel>
</rss>

