<?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: Problem with FieldValue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931754#M649378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The solution from Rob worked - I have used it several times, recently with QV 11 SR8 but I don't believe that there is an issue with SR3. What didn't worked like you expected it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Aug 2015 17:58:44 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2015-08-15T17:58:44Z</dc:date>
    <item>
      <title>Problem with FieldValue</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931750#M649374</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 would like to use the FieldValue function but I obtain a strange result: instead of 1, the result is a question mark... why?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QuestionMark.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/96173_QuestionMark.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;This is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;Num&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;4];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;FieldValue('Num', 1) as FirstNum&lt;/P&gt;&lt;P&gt;Resident Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Elena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Aug 2015 13:02:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931750#M649374</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-15T13:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FieldValue</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931751#M649375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Num(FieldValue('Num',1)) as FirstNum&lt;/P&gt;&lt;P&gt;RESIDENT Data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Aug 2015 13:26:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931751#M649375</guid>
      <dc:creator>maximiliano_vel</dc:creator>
      <dc:date>2015-08-15T13:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FieldValue</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931752#M649376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reasons couldn't qv create or interpret the string-representation for this field (there are other cases in which this happens, too) and therefore it displayed the "?" as placeholder. The suggestion from &lt;A href="https://community.qlik.com/qlik-users/167032"&gt;maximiliano.velez&lt;/A&gt; with num() or a dual() will solve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Aug 2015 13:55:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931752#M649376</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-15T13:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FieldValue</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931753#M649377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example above was just a test.... my aim is to use&amp;nbsp; Rob Wunderlich's code below to get max value in order to improve performance:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;max(FieldValue('ID', recno())) as Maximum&lt;/P&gt;&lt;P&gt;AUTOGENERATE FieldValueCount('ID');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, in your opinion, will I ever be able to use this function (I use QV 11 SR3?)? Is there a solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Elena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Aug 2015 17:23:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931753#M649377</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-15T17:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FieldValue</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931754#M649378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The solution from Rob worked - I have used it several times, recently with QV 11 SR8 but I don't believe that there is an issue with SR3. What didn't worked like you expected it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Aug 2015 17:58:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931754#M649378</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-15T17:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FieldValue</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931755#M649379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My problem is that the result of the code below is a question mark &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dati:&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;Numero&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;P&gt;5&lt;/P&gt;&lt;P&gt;6&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;max(FieldValue('Numero',RecNo())) as Maximum&lt;/P&gt;&lt;P&gt;AutoGenerate FieldValueCount('Numero');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there an error in my code? Do I have to do some settings in the document properties?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Elena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Aug 2015 18:33:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931755#M649379</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-15T18:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FieldValue</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931756#M649380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the same approach i mentioned above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dati:&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;Numero&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;P&gt;5&lt;/P&gt;&lt;P&gt;6&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;max(&lt;STRONG&gt;Num&lt;/STRONG&gt;(FieldValue('Numero',RecNo()))) as Maximum&lt;/P&gt;&lt;P&gt;AutoGenerate FieldValueCount('Numero');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Aug 2015 18:50:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931756#M649380</guid>
      <dc:creator>maximiliano_vel</dc:creator>
      <dc:date>2015-08-15T18:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with FieldValue</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931757#M649381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like above mentioned qlikview failed by the string-interpretation which normally worked automatically. Therefore you need to create these string-interpretation with function which automatically create a dual-field like formatting-functions like num() or you used dual() itself. A quite similar case is here &lt;A href="https://community.qlik.com/thread/176697"&gt;loading a field with distinct values&lt;/A&gt; and it worked with dual().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2015 07:38:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-FieldValue/m-p/931757#M649381</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-16T07:38:09Z</dc:date>
    </item>
  </channel>
</rss>

