<?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() function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164023#M379164</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FieldValue function will only work with distinct field values. So as Stefan suggested please use:&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;&lt;BR /&gt;&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;let varMinMonth = Peek('minDate',0, 'TempMin');&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;&lt;BR /&gt;&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;Hope this helps...&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;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jun 2016 16:12:33 GMT</pubDate>
    <dc:creator>trdandamudi</dc:creator>
    <dc:date>2016-06-22T16:12:33Z</dc:date>
    <item>
      <title>Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164019#M379160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to extract the minimum date of one table (the dates are decimal fields in the DB) and use it fo make a for loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I have done was:&lt;/P&gt;&lt;P&gt;TempMin:&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD *;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SQL&lt;/P&gt;&lt;P&gt;&amp;nbsp; SELECT min($(Date_Field)) as minDate&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM $(Table_Name)&lt;/P&gt;&lt;P&gt;&amp;nbsp; WHERE $(Company_Name) = $(company);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; let varMinMonth = FieldValue('minDate',1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I have always a null value in the &lt;SPAN style="font-size: 13.3333px;"&gt;varMinMonth variable, but when I put the field &lt;SPAN style="font-size: 13.3333px;"&gt;minDate in a TableBox it shows the correct value.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I ceate one inline table, the result is OK&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;English, German&lt;/P&gt;&lt;P&gt;Hello, Hallo&lt;/P&gt;&lt;P&gt;This is a test, Dies ist ein Test&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let a =FieldValue('English',1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone can help me on this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnak you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 13:51:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164019#M379160</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-21T13:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164020#M379161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not exactely sure what causes your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you maybe create a small sample QVW and post it to this thread?&lt;/P&gt;&lt;P&gt;(just your short script that loads the data and the variable, with the script executed, so we can look at your table and values)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I usually use the Peek() function to address table values:&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; let varMinMonth = Peek('minDate',0, 'TempMin');&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 19:08:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164020#M379161</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-21T19:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164021#M379162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Hello &lt;SPAN&gt;Swuehl&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the thread I dont have the option to attach files others than pictures or videos. I have creted a small QVD and loadded it using the script bellow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempMin:&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD max(OKRGDT)&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM $(qvdFile)(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; let varMinMonth = FieldValue('minDate',1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Test: &lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp; English, German&lt;/P&gt;&lt;P&gt;&amp;nbsp; Hello, Hallo&lt;/P&gt;&lt;P&gt;&amp;nbsp; This is a test, Dies ist ein Test&lt;/P&gt;&lt;P&gt;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let a =FieldValue('English',1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see bellow the variable is &lt;SPAN style="font-size: 13.3333px;"&gt;varMinMonth = null.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;IMG alt="QV.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/128860_QV.PNG" style="height: 346px; width: 620px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Bellow an example of the data in the QVD file. It is a decimal field that represents a date.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;20100927&lt;/P&gt;&lt;P&gt;20101227&lt;/P&gt;&lt;P&gt;20101228&lt;/P&gt;&lt;P&gt;20101229&lt;/P&gt;&lt;P&gt;20101230&lt;/P&gt;&lt;P&gt;20110107&lt;/P&gt;&lt;P&gt;20110110&lt;/P&gt;&lt;P&gt;20110111&lt;/P&gt;&lt;P&gt;20110112&lt;/P&gt;&lt;P&gt;20110117&lt;/P&gt;&lt;P&gt;20110119&lt;/P&gt;&lt;P&gt;20110120&lt;/P&gt;&lt;P&gt;20110223&lt;/P&gt;&lt;P&gt;20110228&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 14:21:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164021#M379162</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-22T14:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164022#M379163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can attach files in the 'advanced editor' in the forum, please follow&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-16454"&gt;Uploading a Sample&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please post the sample QVD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 16:03:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164022#M379163</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-22T16:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164023#M379164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FieldValue function will only work with distinct field values. So as Stefan suggested please use:&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;&lt;BR /&gt;&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;let varMinMonth = Peek('minDate',0, 'TempMin');&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;&lt;BR /&gt;&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;Hope this helps...&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;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 16:12:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164023#M379164</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-06-22T16:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164024#M379165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where are you defining the "minDate" field.&amp;nbsp; The FieldValue() function will fail silently if your field does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you possibly mean to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TempMin:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; LOAD max(OKRGDT) as &lt;STRONG&gt;minDate&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; FROM $(qvdFile)(qvd);&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; let varMinMonth = FieldValue('minDate',1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 20:43:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164024#M379165</guid>
      <dc:creator>oscar_ortiz</dc:creator>
      <dc:date>2016-06-22T20:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164025#M379166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help, I have been able to discover that If I load the data from a QVD file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempMin:&lt;/P&gt;&lt;P&gt;LOAD OKRGDT as minDate&lt;/P&gt;&lt;P&gt;FROM $(qvdFile)(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let varMinMonth = FieldValue('minDate',1);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;let varMinMonth2 = Peek('minDate',0, 'TempMin');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Everything works fine.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;But if I load the data directly from the database:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;TempMin:&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD *;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SQL&lt;/P&gt;&lt;P&gt;&amp;nbsp; SELECT min(OKRGDT) as minDate&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM OCUSMA&lt;/P&gt;&lt;P&gt;&amp;nbsp; WHERE OKCONO = 200;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; let varMinMonth = FieldValue('minDate',1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; let varMinMonth2 = Peek('minDate',0, 'TempMin');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; let varMinMonth1 = FieldValue(&lt;STRONG&gt;'MINDATE'&lt;/STRONG&gt;,1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I works only when I use &lt;STRONG style="font-size: 13.3333px;"&gt;MINDATE&lt;/STRONG&gt; in uppercase. I can work with it, but any idea why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 09:37:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164025#M379166</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-23T09:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164026#M379167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Felipe, which field name spelling is actually shown in the table view?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should be the correct spelling when addressing the field using QlikView functions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 13:09:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164026#M379167</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-23T13:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164027#M379168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One reason for this behaviour could be that fieldvalue() only grabbed the numeric value and not provide a string-interpretation like in this case: &lt;A href="https://community.qlik.com/message/845508"&gt;Re: Problem with FieldValue&lt;/A&gt;. Therefore try something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let varMinMonth = date(num(FieldValue('minDate',1)));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or maybe&lt;/P&gt;&lt;P&gt;let varMinMonth = dual(date(FieldValue('minDate',1)), num(FieldValue('minDate',1)));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 13:18:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164027#M379168</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-06-23T13:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164028#M379169</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;In teh table view the name of the filed is &lt;STRONG style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;MINDATE instead of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;minDate&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 14:01:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164028#M379169</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-23T14:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164029#M379170</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 have tried but does not solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 14:13:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164029#M379170</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-23T14:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164030#M379171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So your SQL driver returns all field names in upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can rename the field name to mixed case in the preceding LOAD statement or just use the upper case field name in your FieldValue() function, whatever you like better.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 15:21:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164030#M379171</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-23T15:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Fieldvalue() function</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164031#M379172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Felipe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ran into the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FieldValue only seems to work on columns that contain unique values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My solution was to use the peek function, as originally suggested by Stefan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2018 21:14:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Fieldvalue-function/m-p/1164031#M379172</guid>
      <dc:creator>mblumenroth</dc:creator>
      <dc:date>2018-09-22T21:14:05Z</dc:date>
    </item>
  </channel>
</rss>

