<?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: Is the problem the comma? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364944#M135764</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;Use just "&amp;gt;" instead of "&amp;gt;&amp;gt;" (the latter is a unary operator, unlikely to be used here). That should work just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jul 2012 12:37:25 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2012-07-24T12:37:25Z</dc:date>
    <item>
      <title>Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364943#M135763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to everyone, &lt;/P&gt;&lt;P&gt;I'm new in qlikview but i'm going mad with this problem.&lt;/P&gt;&lt;P&gt;I need to parse the entire result set of a load to find the row with minimun value of a ratio of two field.&lt;/P&gt;&lt;P&gt;This is the code that i did&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;let ratioMin=1;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;let ratioMax=0;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For i = 1 to NoOfRows('Table')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; LET vNumA=FieldValue('NumberA',$(i));&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; LET vNumB= FieldValue('NumberB',$(i)); &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; LET vNewRatio=$(#vNumA)/$(#vNumB);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; if( $(ratioMin)&amp;gt;&amp;gt;$(vNewRatio)) then&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; let ratioMin=$(vNewRatio);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; let vUteDanMin=FieldValue('Utente',$(i)); &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; end if&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;next&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script return error, and with the debug i saw that the variable vNewRatio assume value like 0,066666666666667 with comma separator.&lt;/P&gt;&lt;P&gt;The returned message is this:&lt;/P&gt;&lt;P&gt;"Script line error: &lt;/P&gt;&lt;P&gt;if( 1&amp;gt;&amp;gt;0,066666666666667) then"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that the problem? How can i fix it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 12:34:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364943#M135763</guid>
      <dc:creator />
      <dc:date>2012-07-24T12:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364944#M135764</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;Use just "&amp;gt;" instead of "&amp;gt;&amp;gt;" (the latter is a unary operator, unlikely to be used here). That should work just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 12:37:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364944#M135764</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-07-24T12:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364945#M135765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel,&lt;/P&gt;&lt;P&gt;I tried your solution but doesn't work. There is always the error, now with one "&amp;gt;".&lt;/P&gt;&lt;P&gt;However thank you for the information&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alessio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 12:45:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364945#M135765</guid>
      <dc:creator />
      <dc:date>2012-07-24T12:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364946#M135766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alessio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13431344766498096" jivemacro_uid="_13431344766498096"&gt;&lt;P&gt;IF Num($(ratioMin)) &amp;gt; Num($(vNewRatio)) THEN&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 12:55:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364946#M135766</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-07-24T12:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364947#M135767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;i tryed also this but dosn't work &lt;/P&gt;&lt;P&gt;the variable NUM(&lt;CODE class="jive-code"&gt;vNewRatio)&lt;/CODE&gt; assume value lik this 066666666666667 instead 0,66666666666667, and the IF don't work properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the problem is the ',' that the ratio give back to the variable instead the '.'&amp;nbsp; as decimal separator as usual, but i don't understand why&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Alessio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 13:16:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364947#M135767</guid>
      <dc:creator />
      <dc:date>2012-07-24T13:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364948#M135768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alessio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do your script variables ThousandSep, DecimalSep and so store? Are they properly set up and according to your computer local settings?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: Attached an example. If you remove the Num() function in the If, it crashes, otherwise it works as expected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 13:50:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364948#M135768</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-07-24T13:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364949#M135769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;These are my eviroment variable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET ThousandSep='.';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET DecimalSep=',';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET MoneyThousandSep='.';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET MoneyDecimalSep=',';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET MoneyFormat='€ #.##0,00;-€ #.##0,00';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET TimeFormat='hh:mm:ss';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET DateFormat='DD/MM/YYYY';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff]';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET MonthNames='gen;feb;mar;apr;mag;giu;lug;ago;set;ott;nov;dic';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET DayNames='lun;mar;mer;gio;ven;sab;dom';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tryed also to switch ThousandSep and DecimalSep .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET ThousandSep=',';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SET DecimalSep='.';&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the problem is still there. &lt;/P&gt;&lt;P&gt;My local setting of&amp;nbsp; Decimal Separator is ','. Do you think is that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 14:05:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364949#M135769</guid>
      <dc:creator />
      <dc:date>2012-07-24T14:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364950#M135770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alessio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does my app run fine when you load it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 14:18:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364950#M135770</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-07-24T14:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364951#M135771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry i have the personal edition for the moment, can you paste the just the code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to change the windows enviroment variable but nothing is changed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alessio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 14:20:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364951#M135771</guid>
      <dc:creator />
      <dc:date>2012-07-24T14:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364952#M135772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alessio here you are,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13431398720355439" jivemacro_uid="_13431398720355439"&gt;&lt;P&gt;// Same variables as you have&lt;/P&gt;&lt;P&gt;LET vNum1 = 2;&lt;/P&gt;&lt;P&gt;LET vNum2 = 3;&lt;/P&gt;&lt;P&gt;LET vRatio = $(vNum1) / $(vNum2); // To make sure the result is a long decimal number 0,6666666667&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF Num($(vRatio)) &amp;gt; 1 THEN // This works, enters the IF part&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET vRatioOK = 0;&lt;/P&gt;&lt;P&gt;ELSE &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET vRatioOK = 1;&lt;/P&gt;&lt;P&gt;END IF&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will see the variable vRatioOK = 0, that means that has run as expected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 14:23:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364952#M135772</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-07-24T14:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364953#M135773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,&lt;/P&gt;&lt;P&gt;i tryed and works fine. Hower your script works fine also without Num() function,don't you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vRatio assume the value 0.66666666666667 (with dot as separator instead comma) as i can see in debug mode.&lt;/P&gt;&lt;P&gt;Could be the problem by the FieldValue() ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot ....you are great!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alessio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 14:33:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364953#M135773</guid>
      <dc:creator />
      <dc:date>2012-07-24T14:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364954#M135774</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;Yes, the FieldValue() would be the case, but that's easy to fix, just modify the lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13431409150677748" jivemacro_uid="_13431409150677748"&gt;&lt;P&gt;LET vNumA = Num(FieldValue('NumberA',$(i)));&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if that does not work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13431409468166928" jivemacro_uid="_13431409468166928"&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;LET vNumA = Num(Num#(FieldValue('NumberA',$(i)), '#,#'));&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can even specify the decimal and thousand separator in the Num() function without need to represent with the Num#() function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 14:45:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364954#M135774</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-07-24T14:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364955#M135775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That seems like a complex approach, looping through the records. There are a number of simpler approaches using LOAD. One I can think of is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;MinTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstSortedValue(DISTINCT Utente, (NumberA / NumberB)) as MinUtente&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;RESIDENT Table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 17:39:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364955#M135775</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-07-24T17:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364956#M135776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Miguel,&lt;/P&gt;&lt;P&gt;the problem was the FieldValue(), maybe the result of the function was a strange format...I inserted the Num() function and the problem is gone...However i had other problem with FieldValue(), so i changed it with Peek().&lt;/P&gt;&lt;P&gt;FiledValue have strange behaviour...&lt;/P&gt;&lt;P&gt;Miguel thanks a lot....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob, you have right, your solution maybe was easier, but to retrieve the entire row i need to make e left join with itself i think...However i wanted just to understand the strange problem that i found! Thanks a lot also to you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alessio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 10:31:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364956#M135776</guid>
      <dc:creator />
      <dc:date>2012-07-25T10:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Is the problem the comma?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364957#M135777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand your data exists in two tables, not the same table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that the fieldvalue() technique works only if every row has a unique value. FieldValue() is the set of values, not rows. So row values like&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;3&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;Will return only three values 1,3,4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to go actual row by row, use peek() instead of fieldvalue().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2012 15:14:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-the-problem-the-comma/m-p/364957#M135777</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-07-25T15:14:59Z</dc:date>
    </item>
  </channel>
</rss>

