<?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: Change value in the field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823443#M1036419</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Massimo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got it fixed. Thank you so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jan 2015 20:04:25 GMT</pubDate>
    <dc:creator>AH</dc:creator>
    <dc:date>2015-01-20T20:04:25Z</dc:date>
    <item>
      <title>Change value in the field</title>
      <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823438#M1036413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to force some value in a field to change into something else. This is what i am writing in my script,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DataAreaId&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;='tgbr' &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DataAreaId&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; ='TGNL','tgnl') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DataAreaId &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make the value "tgbr" and "TGNL" to "tgnl". What i am doing wrong in my script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 19:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823438#M1036413</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2015-01-20T19:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Change value in the field</title>
      <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823439#M1036414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess you want this:&lt;/P&gt;&lt;P&gt;if(DataAreaId='tgbr' or DataAreaId ='TGNL','tgnl', DataAreaId) as DataAreaId &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 19:36:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823439#M1036414</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-20T19:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Change value in the field</title>
      <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823440#M1036415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. TGNL changed to tgnl but tgbr didnt changed to tgnl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 19:45:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823440#M1036415</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2015-01-20T19:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Change value in the field</title>
      <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823441#M1036416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(match(lower(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;DataAreaId)&lt;/SPAN&gt;, 'tgbr', 'tgnl'), 'tgnl', DataAreaId) as DataAreaId&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 19:51:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823441#M1036416</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-01-20T19:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Change value in the field</title>
      <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823442#M1036417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;BR /&gt;if(wildmatch(DataAreaId,'*tgbr*','*TGNL*'), 'tgnl', DataAreaId) as DataAreaId&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 19:53:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823442#M1036417</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-20T19:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Change value in the field</title>
      <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823443#M1036419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Massimo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got it fixed. Thank you so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 20:04:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823443#M1036419</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2015-01-20T20:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Change value in the field</title>
      <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823444#M1036420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Massimo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oops! Sorry, in the textbox its showing the tgbr is gone. But while i looked at the table i see the tgbr is replaced by&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' - '&amp;nbsp; hyphen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 20:15:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823444#M1036420</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2015-01-20T20:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Change value in the field</title>
      <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823445#M1036422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried the "wildmatch" expression?&amp;nbsp; If it doesn't help, there is something in the data we can't guess, and need an example of your file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 21:08:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823445#M1036422</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-20T21:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Change value in the field</title>
      <link>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823446#M1036423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am really sorry not to mention it before. I tried with the wildmatch but it didnt work either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont know if anything wrong with the data. I have to check again and i will get back again later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jan 2015 21:12:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-value-in-the-field/m-p/823446#M1036423</guid>
      <dc:creator>AH</dc:creator>
      <dc:date>2015-01-20T21:12:13Z</dc:date>
    </item>
  </channel>
</rss>

