<?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: How do I rename field values? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742039#M1034817</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dual to let this field be sortable numerically.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Jan 2015 12:28:39 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2015-01-21T12:28:39Z</dc:date>
    <item>
      <title>How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742034#M1034812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a field called 'group' and it has 6 possible values - '1. Under 10hr', '2. Under 40hr', '3. under 80h', '4. Under 160', '5. Under 320', '6. Over 320'.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;The possible values aren't very clear.&amp;nbsp; I would like to present these differently in all my charts and tables.&amp;nbsp; I would like to rename them to - 'Under 10 hours', '10 up to 40 hours', '40 up to 80 hours', '80 up to 160 hours', '160 up to 320 hours', '320 hours up to FT'.&lt;/P&gt;&lt;P&gt;Is there a way to do this in the 'edit script'.?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 11:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742034#M1034812</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-21T11:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742035#M1034813</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;Edit this code below to group field .&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Group&amp;lt;0 ,Dual('&amp;lt;0',1),&lt;/P&gt;&lt;P&gt;if(Group&amp;gt;1 and Group&amp;lt;=10,Dual('1-10',2),&lt;/P&gt;&lt;P&gt;if(Group&amp;gt;=11 and Group&amp;lt;=40,Dual('11-40',3),&lt;/P&gt;&lt;P&gt;if(Group&amp;gt;=41 and Group&amp;lt;=80,Dual('41-80',4),&lt;/P&gt;&lt;P&gt;if(Group&amp;gt;=81 and Group&amp;lt;=160,Dual('41-160',5),&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;)))) as&amp;nbsp; Hours_band&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;Hope this helps !!&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;Regards&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;Krishna&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 12:09:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742035#M1034813</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-01-21T12:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742036#M1034814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Greg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should work:&lt;/P&gt;&lt;P&gt;Pick(Match(group, '1. Under 10hr', '2. Under 40hr', '3. under 80h', '4. Under 160', '5. Under 320', '6. Over 320'), 'Under 10 hours', '10 up to 40 hours', '40 up to 80 hours', '80 up to 160 hours', '160 up to 320 hours', '320 hours up to FT')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is very important to list the elements in the same order because first match will return first pick item and so on.&lt;/P&gt;&lt;P&gt;Or, you can use Mapping Load / Apply Map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 12:24:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742036#M1034814</guid>
      <dc:creator>daveamz</dc:creator>
      <dc:date>2015-01-21T12:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742037#M1034815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=Dual(Pick(Match(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;group&lt;/SPAN&gt;, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'1. Under 10hr', '2. Under 40hr', '3. under 80h', '4. Under 160', '5. Under 320', '6. Over 320'&lt;/SPAN&gt;),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'Under 10 hours', '10 up to 40 hours', '40 up to 80 hours', &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '80 up to 160 hours',&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; '160 up to 320 hours', '320 hours up to FT'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Match(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;group&lt;/SPAN&gt;, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'1. Under 10hr', '2. Under 40hr', '3. under 80h', '4. Under 160', '5. Under 320', '6. Over 320'&lt;/SPAN&gt;)&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 12:26:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742037#M1034815</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-01-21T12:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742038#M1034816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I answered something similar the other day, maybe have a look at this&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/148849"&gt;http://community.qlik.com/thread/148849&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope that helps&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 12:28:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742038#M1034816</guid>
      <dc:creator />
      <dc:date>2015-01-21T12:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742039#M1034817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dual to let this field be sortable numerically.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 12:28:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742039#M1034817</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-01-21T12:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742040#M1034818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would use a MAPPING load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;GroupMap:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;MAPPING LOAD from, dual(to,RecNo()) INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;from, to&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;1. Under 10hr, Under 10 Hours&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;2. Under 40hr, 10 to 40 Hours&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;etc&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;MAP Group USING GroupMap;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dual() trick will set up a numeric value for sorting. Just list the rows in order in the mapping table.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com" rel="nofollow"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 14:55:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742040#M1034818</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-01-21T14:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742041#M1034819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Krishna, Marco, David, Joe, Rob&lt;/P&gt;&lt;P&gt;Thank you for your assistance.&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2015 16:17:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/742041#M1034819</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-21T16:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829142#M1214273</link>
      <description>&lt;P&gt;Hello Gentlemen,&lt;BR /&gt;&lt;BR /&gt;Is there any way to display Alias name for field values using expression.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I do have only two field values under a field "Eligible Criteria" (For example).&lt;BR /&gt;&lt;BR /&gt;The first one has&amp;nbsp;"Fuel Vehicle Eligible" which I would like to show as "Eligible" and next one "Not eligible due to"&amp;nbsp; as "Not Eligible"&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!&lt;BR /&gt;&lt;BR /&gt;@Anonymous&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/675"&gt;@MarcoWedel&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28971"&gt;@daveamz&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/44466"&gt;@krishna20&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 15:28:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829142#M1214273</guid>
      <dc:creator>AshwinDaniel</dc:creator>
      <dc:date>2021-08-17T15:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829507#M1214339</link>
      <description>&lt;P&gt;If(&lt;SPAN&gt;"Eligible Criteria" = 'Fuel Vehicle Eligible', 'Eligible', 'Not Eligible')&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Aug 2021 15:57:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829507#M1214339</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-08-18T15:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829698#M1214369</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thank you for your assistance.&lt;BR /&gt;&lt;BR /&gt;I would like to change the background color too based on the output. Is that possible using any chart?&lt;BR /&gt;&lt;BR /&gt;Currently I am using "Text and Image"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AshwinDaniel_1-1629368050567.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/60351i33C9D86366087AE1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AshwinDaniel_1-1629368050567.png" alt="AshwinDaniel_1-1629368050567.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Ashwin Daniel&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 10:15:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829698#M1214369</guid>
      <dc:creator>AshwinDaniel</dc:creator>
      <dc:date>2021-08-19T10:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829727#M1214370</link>
      <description>&lt;P&gt;Thank you for your assistance&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;,&amp;nbsp; I played wrong with the single and double quotes.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AshwinDaniel_0-1629372209796.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/60367i05D90FA81BF9954A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AshwinDaniel_0-1629372209796.png" alt="AshwinDaniel_0-1629372209796.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Many thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 11:24:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829727#M1214370</guid>
      <dc:creator>AshwinDaniel</dc:creator>
      <dc:date>2021-08-19T11:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829729#M1214371</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Could you please suggest me, which chart to use:&lt;BR /&gt;&lt;BR /&gt;I would like to change the background color as RED when it is not eligible and GREEN on Eligible.&lt;BR /&gt;&lt;BR /&gt;Many thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 11:26:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1829729#M1214371</guid>
      <dc:creator>AshwinDaniel</dc:creator>
      <dc:date>2021-08-19T11:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1830025#M1214400</link>
      <description>&lt;P&gt;You should start a new thread for these new questions.&amp;nbsp; It's difficult to get answers when new questions are added to old posts.&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 23:23:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1830025#M1214400</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-08-19T23:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I rename field values?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1830079#M1214409</link>
      <description>&lt;P&gt;Yes you are right&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;. I shall open this as a new thread Mr. Rob.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 06:42:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-rename-field-values/m-p/1830079#M1214409</guid>
      <dc:creator>AshwinDaniel</dc:creator>
      <dc:date>2021-08-20T06:42:33Z</dc:date>
    </item>
  </channel>
</rss>

