<?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 Creating values in a field based on values in two other fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283244#M1202164</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, you want a table that does the same thing, but has a column for every single Cue? I wouldn't want to create a separate field for every Cue value.&lt;/P&gt;&lt;P&gt;There's probably a better solution, but here's one. Create a new table like this:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;LOAD 'AnsCalls-' &amp;amp; fieldvalue('Cue',iterno()) as ExcludeCue&lt;BR /&gt;AUTOGENERATE 1&lt;BR /&gt;WHILE len(fieldvalue('Cue',iterno()))&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;Turn your chart into a pivot table. Add ExcludeCue as a dimension. Move it to the top. Add this expression:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;if(Cue=mid(ExcludeCue,10),0,AnsweredCalls)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Oct 2010 23:54:30 GMT</pubDate>
    <dc:creator>johnw</dc:creator>
    <dc:date>2010-10-20T23:54:30Z</dc:date>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283228#M1202148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;BR /&gt;&lt;BR /&gt;I have a table that looks like the one below:&lt;BR /&gt;&lt;BR /&gt;Cue IncommingCalls AnsweredCalls&lt;BR /&gt;Sales 5 4&lt;BR /&gt;Support 3 2&lt;BR /&gt;&lt;BR /&gt;What I would like to do is adding a field that displays a 0 if the value of the Cue field is support.&lt;BR /&gt;It would then look like this:&lt;BR /&gt;&lt;BR /&gt;Cue IncommingCalls AnsweredCalls AnsCalls-Support&lt;BR /&gt;Sales 5 4 4&lt;BR /&gt;Support 3 2 0&lt;BR /&gt;&lt;BR /&gt;There is probably an easy solution to this but I'm a beginner when it comes to QlikView.&lt;BR /&gt;&lt;BR /&gt;I'm guessing that it might be possible to solve this with load inline.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 09:06:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283228#M1202148</guid>
      <dc:creator />
      <dc:date>2010-10-20T09:06:01Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283229#M1202149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel, please attach a sample so I can check it out, tx, S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 09:17:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283229#M1202149</guid>
      <dc:creator />
      <dc:date>2010-10-20T09:17:53Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283230#M1202150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;this could be a part of your load-script:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Cue, // and other fields&lt;/P&gt;&lt;P&gt;If ( Cue='Support', 0, AnsweredCalls) AS [AnsCalls-Support],&lt;/P&gt;&lt;P&gt;// next fields, if any&lt;/P&gt;&lt;P&gt;--&amp;gt; creates a new field called "AnsCalls-Support" during load, content depending on the field "Cue"&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 09:24:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283230#M1202150</guid>
      <dc:creator />
      <dc:date>2010-10-20T09:24:29Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283231#M1202151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;Here's the sample table that solves your problem.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 09:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283231#M1202151</guid>
      <dc:creator />
      <dc:date>2010-10-20T09:36:11Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283232#M1202152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shanejvv, unfortunately I'm still running the Personal Edition version on my computer and from what I understand you can't open .qvw files that are created with a PE-license on another computer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will hopefully get a proper license within the coming weeks but I hope I have sorted this out by that time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks anyway!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 09:48:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283232#M1202152</guid>
      <dc:creator />
      <dc:date>2010-10-20T09:48:06Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283233#M1202153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;kurokarl, I will try this out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your quick response!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 09:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283233#M1202153</guid>
      <dc:creator />
      <dc:date>2010-10-20T09:49:35Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283234#M1202154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;Can you access the file that I had uploaded?&lt;/P&gt;&lt;P&gt;If no just follow this instruction:&lt;/P&gt;&lt;P&gt;In your Expression add this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;If(Cue = 'Support', '0', AnsweredCalls)&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Then on Presentation Tab, unchecked Suppress Zero Values.&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/674/8206.suppress.JPG"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/674/8206.suppress.JPG" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 10:09:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283234#M1202154</guid>
      <dc:creator />
      <dc:date>2010-10-20T10:09:23Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283235#M1202155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, we do not have option to insert fields either left or right to use some functions in Qlikview 8 th version.&lt;/P&gt;&lt;P&gt;Is such kind of option is there in latest version??&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 10:15:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283235#M1202155</guid>
      <dc:creator />
      <dc:date>2010-10-20T10:15:19Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283236#M1202156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim (Daniel),&lt;/P&gt;&lt;P&gt;I do not understand your comment. Do you both work in the same office ? To answer your question: My (load-)solution works fine with 9.x And as far as I remember the old QV8-days, it should work also with that version.&lt;/P&gt;&lt;P&gt;See you&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 10:25:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283236#M1202156</guid>
      <dc:creator />
      <dc:date>2010-10-20T10:25:07Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283237#M1202157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am talking general, let assume you have one table box, if you want to add one more field its not that much feasible as compared to Business objects.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 10:30:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283237#M1202157</guid>
      <dc:creator />
      <dc:date>2010-10-20T10:30:14Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283238#M1202158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This confuses me.&lt;/P&gt;&lt;P&gt;In Karl's solution you can add his newly created field in a table box just a normal field (by clicking add button)&lt;/P&gt;&lt;P&gt;In my solution I used straight table so you will add the code in expression.&lt;/P&gt;&lt;P&gt;I think both solutions will work in v8&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 10:36:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283238#M1202158</guid>
      <dc:creator />
      <dc:date>2010-10-20T10:36:32Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283239#M1202159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;P&gt;Oh, I understand what you mean &lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;.&lt;/P&gt;&lt;P&gt;For me, I am more a script-guy. If I need a new (calculated) field (i.e. like you in a tablebox), I prefer to generate it during loading. This costs no enduser-time and I have it present when I need it in the next object. And in most cases, you will need it.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 10:39:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283239#M1202159</guid>
      <dc:creator />
      <dc:date>2010-10-20T10:39:01Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283240#M1202160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronald,&lt;/P&gt;&lt;P&gt;this is correct. There are often more than one solution and both should work with V8. As I just said, I prefer creating such fields in the script.&lt;/P&gt;&lt;P&gt;I took a glance into your qvw-file. If you don't mind, I can repost it with my "normal" client, so evrerybody should be able to open it.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Roalnd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 10:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283240#M1202160</guid>
      <dc:creator />
      <dc:date>2010-10-20T10:45:55Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283241#M1202161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;kurokarl wrote:&lt;BR /&gt;I took a glance into your qvw-file. If you don't mind, I can repost it with my "normal" client, so evrerybody should be able to open it.&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Sure! &lt;IMG alt="Big Smile" src="http://community.qlik.com/emoticons/emotion-2.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 10:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283241#M1202161</guid>
      <dc:creator />
      <dc:date>2010-10-20T10:58:43Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283242#M1202162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;kurokarl, that would be very nice of you if you could do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution works great (thanks!!) but it is always nice to see in what ways you can get around a problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a follow up question... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I have about 10 other fields that I need to do the same thing for and when we will start using this thing 'live' there will be around one million lines in this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it efficient to do one IF-statement for each value in the Cue-field or is it possible/more efficient to do it in the same IF-statement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 11:06:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283242#M1202162</guid>
      <dc:creator />
      <dc:date>2010-10-20T11:06:37Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283243#M1202163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;here is Ronald's qvw-file showing a solution in the expressions.&lt;/LI&gt;&lt;LI&gt;yes, you can use nested ifs (look at my example below) in scripts&lt;/LI&gt;&lt;LI&gt;No, these if-functions are normally not relevant for performance issues. One million rows are not too much. Think about the whole system: performance of the source database (or file), network topology (and traffic), ... In this chain QV normally is not the bottle-neck.&lt;/LI&gt;&lt;LI&gt;you can only use one statement (but nested funcions) per field and load, regardless what type of functions&lt;/LI&gt;&lt;LI&gt;take a look at the applymap()-function, using a reference-table (in QV it is called a mapping-table) this may make your life easier&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;IF (LEN(VProdukt) &amp;gt; 0, VProdukt, VArtikelgruppe) AS Produkt, // VProdukt is empty or Null&lt;BR /&gt; VYear,&lt;BR /&gt; IF(MONTH(VDate) &amp;lt;4, 'Q1',&lt;BR /&gt; IF(MONTH(VDate) &amp;lt;7, 'Q2',&lt;BR /&gt; IF(MONTH(VDate) &amp;lt;10,'Q3',&lt;BR /&gt; IF(MONTH(VDate) &amp;lt;13,'Q4',&lt;BR /&gt; 'Q5')))) AS Quartal,&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;VYear, VDate, VProdukt, .... come from an oracle database.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 13:16:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283243#M1202163</guid>
      <dc:creator />
      <dc:date>2010-10-20T13:16:14Z</dc:date>
    </item>
    <item>
      <title>Creating values in a field based on values in two other fields</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283244#M1202164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, you want a table that does the same thing, but has a column for every single Cue? I wouldn't want to create a separate field for every Cue value.&lt;/P&gt;&lt;P&gt;There's probably a better solution, but here's one. Create a new table like this:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;LOAD 'AnsCalls-' &amp;amp; fieldvalue('Cue',iterno()) as ExcludeCue&lt;BR /&gt;AUTOGENERATE 1&lt;BR /&gt;WHILE len(fieldvalue('Cue',iterno()))&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;Turn your chart into a pivot table. Add ExcludeCue as a dimension. Move it to the top. Add this expression:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;if(Cue=mid(ExcludeCue,10),0,AnsweredCalls)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Oct 2010 23:54:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-values-in-a-field-based-on-values-in-two-other-fields/m-p/283244#M1202164</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-10-20T23:54:30Z</dc:date>
    </item>
  </channel>
</rss>

