<?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: I'm trying to get ride of the &amp;quot;sult&amp;quot; and &amp;quot;re&amp;quot; also trying to make the month numbers in actual names in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306031#M831189</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Harasawa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give a try at the below link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/152744"&gt;Replace function: Find Multiple strings and replace to blank&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jun 2017 16:51:04 GMT</pubDate>
    <dc:creator>tajmohamed30</dc:creator>
    <dc:date>2017-06-16T16:51:04Z</dc:date>
    <item>
      <title>I'm trying to get ride of the "sult" and "re" also trying to make the month numbers in actual names</title>
      <link>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306029#M831187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/167143_Capture.PNG" style="width: 620px; height: 34px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306029#M831187</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to get ride of the "sult" and "re" also trying to make the month numbers in actual names</title>
      <link>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306030#M831188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the sult and Re in your values? Where this data coming from. Would you explain little more &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 16:44:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306030#M831188</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-06-16T16:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to get ride of the "sult" and "re" also trying to make the month numbers in actual names</title>
      <link>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306031#M831189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Harasawa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give a try at the below link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/152744"&gt;Replace function: Find Multiple strings and replace to blank&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 16:51:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306031#M831189</guid>
      <dc:creator>tajmohamed30</dc:creator>
      <dc:date>2017-06-16T16:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to get ride of the "sult" and "re" also trying to make the month numbers in actual names</title>
      <link>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306032#M831190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try these in your Load script where you getting those field names&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD ....,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(NOT Match(Year, 'sult'), Year)&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS NewYear, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(NOT Match(MonthNames, 're'), MonthNames) AS Month&lt;/P&gt;&lt;P&gt;FROM yousource; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 16:52:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306032#M831190</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-06-16T16:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to get ride of the "sult" and "re" also trying to make the month numbers in actual names</title>
      <link>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306033#M831191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I believe it is from this. This is at the very end but has no values&lt;/P&gt;&lt;P&gt;&lt;IMG alt="jjk.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/167163_jjk.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 17:10:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306033#M831191</guid>
      <dc:creator />
      <dc:date>2017-06-16T17:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to get ride of the "sult" and "re" also trying to make the month numbers in actual names</title>
      <link>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306034#M831192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share your actual script for those fieldnames?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 17:17:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306034#M831192</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-06-16T17:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to get ride of the "sult" and "re" also trying to make the month numbers in actual names</title>
      <link>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306035#M831193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll want to remove those records from your data.&amp;nbsp; I'm guessing besides your month and year filters you have an extra 'results' row that doesn't belong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your script you'll want to add a where clause to remove it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;From YourFile&lt;/P&gt;&lt;P&gt;where not wildmatch(Month,'Res')&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 20:15:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-m-trying-to-get-ride-of-the-quot-sult-quot-and-quot-re-quot/m-p/1306035#M831193</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-16T20:15:35Z</dc:date>
    </item>
  </channel>
</rss>

