<?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 Changing Field Name Dynamically without Script Load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Changing-Field-Name-Dynamically-without-Script-Load/m-p/1427934#M429855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a field in my dataset called '&lt;EM&gt;sales.DryFruits'&lt;/EM&gt; which i change in my script load to &lt;EM&gt;[Dry Fruits]&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;i have created a group in my chart called [Items] which is made up of 2 fields: &lt;EM&gt;[Dry Fruits]&lt;/EM&gt; and &lt;EM&gt;[Flowers]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;in my Chart Title i am changing the field dynamically by using the group '&lt;EM&gt;Items&lt;/EM&gt;', with the formula:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt; ='Current Sales per ' &amp;amp; ' ' &amp;amp; GetCurrentField([Items])&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Problem: in the label, i am trying to make it say &lt;EM&gt;[Fruits]&lt;/EM&gt; instead of &lt;EM&gt;[Dry Fruit]&lt;/EM&gt; without changing it in the Script Load. i want the field in the label to say [&lt;EM&gt;Fruit&lt;/EM&gt;] but everywhere else in the report to say [&lt;EM&gt;Dry Fruits]&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a formula or expression i can use to change this field dynamically in the Title bar? or maybe a workaround without using the script load?&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Sep 2017 19:59:07 GMT</pubDate>
    <dc:creator>triekong</dc:creator>
    <dc:date>2017-09-27T19:59:07Z</dc:date>
    <item>
      <title>Changing Field Name Dynamically without Script Load</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-Field-Name-Dynamically-without-Script-Load/m-p/1427934#M429855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a field in my dataset called '&lt;EM&gt;sales.DryFruits'&lt;/EM&gt; which i change in my script load to &lt;EM&gt;[Dry Fruits]&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;i have created a group in my chart called [Items] which is made up of 2 fields: &lt;EM&gt;[Dry Fruits]&lt;/EM&gt; and &lt;EM&gt;[Flowers]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;in my Chart Title i am changing the field dynamically by using the group '&lt;EM&gt;Items&lt;/EM&gt;', with the formula:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt; ='Current Sales per ' &amp;amp; ' ' &amp;amp; GetCurrentField([Items])&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Problem: in the label, i am trying to make it say &lt;EM&gt;[Fruits]&lt;/EM&gt; instead of &lt;EM&gt;[Dry Fruit]&lt;/EM&gt; without changing it in the Script Load. i want the field in the label to say [&lt;EM&gt;Fruit&lt;/EM&gt;] but everywhere else in the report to say [&lt;EM&gt;Dry Fruits]&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a formula or expression i can use to change this field dynamically in the Title bar? or maybe a workaround without using the script load?&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 19:59:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-Field-Name-Dynamically-without-Script-Load/m-p/1427934#M429855</guid>
      <dc:creator>triekong</dc:creator>
      <dc:date>2017-09-27T19:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Field Name Dynamically without Script Load</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-Field-Name-Dynamically-without-Script-Load/m-p/1427935#M429856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;='Current Sales per ' &amp;amp; ' ' &amp;amp; If(GetCurrentField([Items]) = 'Dry Fruits', 'Fruit', GetCurrentField([Items]))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 20:05:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-Field-Name-Dynamically-without-Script-Load/m-p/1427935#M429856</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-09-27T20:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Field Name Dynamically without Script Load</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-Field-Name-Dynamically-without-Script-Load/m-p/1427936#M429857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this? Check attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 20:06:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-Field-Name-Dynamically-without-Script-Load/m-p/1427936#M429857</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-09-27T20:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Field Name Dynamically without Script Load</title>
      <link>https://community.qlik.com/t5/QlikView/Changing-Field-Name-Dynamically-without-Script-Load/m-p/1427937#M429858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much! it worked &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2017 12:32:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Changing-Field-Name-Dynamically-without-Script-Load/m-p/1427937#M429858</guid>
      <dc:creator>triekong</dc:creator>
      <dc:date>2017-09-28T12:32:17Z</dc:date>
    </item>
  </channel>
</rss>

