<?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 How to rename field values in Qlik via Load Editor in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2015712#M83908</link>
    <description>&lt;P&gt;Hello All,&lt;BR /&gt;I would need to change some field value in qliksense.&lt;BR /&gt;&lt;BR /&gt;For example&amp;nbsp;&lt;BR /&gt;One Column Heading is "Threshold Limit". It is having 2 values.&lt;BR /&gt;1. &amp;lt;Limit&lt;/P&gt;
&lt;P&gt;2. &amp;lt;Limit&lt;/P&gt;
&lt;P&gt;Need to change these field Name&lt;BR /&gt;1. "&amp;lt;Limit" to "UnderLimit"&lt;/P&gt;
&lt;P&gt;2. "&amp;gt;Limit" to "OverLimit"&lt;/P&gt;
&lt;P&gt;Kindly suggest&amp;nbsp;&lt;BR /&gt;Many thanks&lt;/P&gt;</description>
    <pubDate>Tue, 13 Dec 2022 04:13:11 GMT</pubDate>
    <dc:creator>DJ21</dc:creator>
    <dc:date>2022-12-13T04:13:11Z</dc:date>
    <item>
      <title>How to rename field values in Qlik via Load Editor</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2015712#M83908</link>
      <description>&lt;P&gt;Hello All,&lt;BR /&gt;I would need to change some field value in qliksense.&lt;BR /&gt;&lt;BR /&gt;For example&amp;nbsp;&lt;BR /&gt;One Column Heading is "Threshold Limit". It is having 2 values.&lt;BR /&gt;1. &amp;lt;Limit&lt;/P&gt;
&lt;P&gt;2. &amp;lt;Limit&lt;/P&gt;
&lt;P&gt;Need to change these field Name&lt;BR /&gt;1. "&amp;lt;Limit" to "UnderLimit"&lt;/P&gt;
&lt;P&gt;2. "&amp;gt;Limit" to "OverLimit"&lt;/P&gt;
&lt;P&gt;Kindly suggest&amp;nbsp;&lt;BR /&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2022 04:13:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2015712#M83908</guid>
      <dc:creator>DJ21</dc:creator>
      <dc:date>2022-12-13T04:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename field values in Qlik via Load Editor</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2015734#M83911</link>
      <description>&lt;P&gt;Hi, I'd go with mapping. Try this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;[ML_THRESHOLD]:
MAPPING LOAD * INLINE [
From,To
&amp;lt;Limit,UnderLimit
&amp;gt;Limit,OverLimit
];

temp:
LOAD
ROWNO() AS Row,
"Threshold Limit"
INLINE [
Threshold Limit
&amp;lt;Limit
&amp;gt;Limit
];

final:
LOAD
Row,
APPLYMAP('ML_THRESHOLD',"Threshold Limit") 	AS "Threshold Limit",
"Threshold Limit"							AS "Threshold Limit Original"
RESIDENT temp;

DROP TABLE temp;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 13 Dec 2022 06:40:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2015734#M83911</guid>
      <dc:creator>RsQK</dc:creator>
      <dc:date>2022-12-13T06:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename field values in Qlik via Load Editor</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2015745#M83913</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Simply go with if statement, try like below&lt;/P&gt;
&lt;P&gt;Load *, If(&lt;SPAN&gt;"Threshold Limit" = '&amp;lt;Limit', 'UnderLimit', 'OverLimit') as FieldName from urdatasource;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2022 07:17:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2015745#M83913</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2022-12-13T07:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename field values in Qlik via Load Editor</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2122440#M91369</link>
      <description>&lt;P&gt;not working&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2023 11:34:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2122440#M91369</guid>
      <dc:creator>jagadeeshbv29</dc:creator>
      <dc:date>2023-09-26T11:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename field values in Qlik via Load Editor</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2122717#M91387</link>
      <description>&lt;P&gt;hi&lt;/P&gt;
&lt;P&gt;can you provide the sample data to verify?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Sep 2023 01:41:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2122717#M91387</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2023-09-27T01:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename field values in Qlik via Load Editor</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2122730#M91389</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Load *, If(left(&lt;/SPAN&gt;&lt;SPAN&gt;"Threshold Limit",1) = '&amp;lt;', 'UnderLimit', 'OverLimit') as FieldName from urdatasource;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Sep 2023 02:27:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-rename-field-values-in-Qlik-via-Load-Editor/m-p/2122730#M91389</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2023-09-27T02:27:35Z</dc:date>
    </item>
  </channel>
</rss>

