<?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: Qlikview script function to remove leading spaces at the end in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069637#M638644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kushal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.. It is working fine now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Apr 2016 11:07:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-04-06T11:07:03Z</dc:date>
    <item>
      <title>Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069608#M638615</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;I want to know to how to remove the spaces at the end of the string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: the qlikview is a learning tool.&amp;nbsp; &lt;/P&gt;&lt;P&gt;Qlikview is analytics tool.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;The length of the string varies and the spaces of the string varies to each string.. For eg.. The string 1 contains 5 leading spaces at the end..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 2nd string contains 10 leading spaces at the end..I can't use replace function for removing because it will remove all the spaces including the spaces in between the string...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u please provide solution for the issue..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: vinu priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 20:02:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069608#M638615</guid>
      <dc:creator />
      <dc:date>2016-03-24T20:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069609#M638616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you try Trim() function?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trim(Your_Column_Name) this should remove the spaces.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 21:13:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069609#M638616</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2016-03-24T21:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069610#M638617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use ltrim and rtrim to trim spaces at the beginning and the end&lt;/P&gt;&lt;P&gt;ltrim(rtrim(yourfield)) as yourfield&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;trim will also delete spaces between text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2016 21:46:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069610#M638617</guid>
      <dc:creator>martinpohl</dc:creator>
      <dc:date>2016-03-24T21:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069611#M638618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor1297"&gt;&lt;/A&gt;&lt;A name="ltrim"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;to only trim trailing spaces, you can use RTrim() :&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/RTrim.htm" title="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/RTrim.htm"&gt;RTrim ‒ QlikView&lt;/A&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;/P&gt;&lt;P&gt;LTrim() only trims leading spaces&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/LTrim.htm" style="font-size: 13.3333px;" title="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/LTrim.htm"&gt;LTrim ‒ QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and Trim() both leading and trailing spaces.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Trim.htm" style="font-size: 13.3333px;" title="http://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Trim.htm"&gt;Trim ‒ QlikView&lt;/A&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;/P&gt;&lt;P class="syntax"&gt;hope this helps&lt;/P&gt;&lt;P class="syntax"&gt;&lt;/P&gt;&lt;P class="syntax"&gt;regards&lt;/P&gt;&lt;P class="syntax"&gt;&lt;/P&gt;&lt;P class="syntax"&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 02:43:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069611#M638618</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2016-03-25T02:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069612#M638619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;RTrim(Your_field_name) // this will remove the spaces at the end &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;LTrim(Your_field_name) // this will remove the spaces at the start of your statement &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;Trim(Your_field_name) // this will remove the spaces in both the ends i.e. at the start and at the end of your statements &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 05:37:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069612#M638619</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-03-25T05:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069613#M638620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written function like&lt;/P&gt;&lt;P&gt;trim(Material) &amp;amp; ' ' &amp;amp; rtrim(Material_description) as Material_and_Description,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because I'm having spaces at both the ends for Material and spaces at the end for material description column.&lt;/P&gt;&lt;P&gt;For material it is working and rtrim for Material description is not working.&lt;/P&gt;&lt;P&gt;Can you please suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 09:32:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069613#M638620</guid>
      <dc:creator />
      <dc:date>2016-03-28T09:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069614#M638621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;Trim(Your_field_name)&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 09:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069614#M638621</guid>
      <dc:creator />
      <dc:date>2016-03-28T09:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069615#M638622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rtrim(material_description) is not removing the spaces at the end&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 09:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069615#M638622</guid>
      <dc:creator />
      <dc:date>2016-03-28T09:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069616#M638623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did u concatenated those fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if yes &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;trim(Material) &amp;amp;&lt;STRONG&gt; '_ '&lt;/STRONG&gt; &amp;amp; rtrim(Material_description) as Material_and_Description,&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:01:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069616#M638623</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-03-28T10:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069617#M638624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used this function but the spaces at the end of the material description is still not removed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:05:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069617#M638624</guid>
      <dc:creator />
      <dc:date>2016-03-28T10:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069618#M638625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think Typo mistake&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did u chked the letters of ur field name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:05:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069618#M638625</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-03-28T10:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069619#M638626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;i think Typo mistake&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;did u chked the letters of ur field name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:16:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069619#M638626</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-03-28T10:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069620#M638627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could you please share the sample data &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:16:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069620#M638627</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-03-28T10:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069621#M638628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here some data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 312px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl69" height="36" width="127"&gt;&amp;nbsp;&amp;nbsp; Material&lt;/TD&gt;&lt;TD class="xl69" style="border-left: none;" width="185"&gt;Material Desc&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;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="36" style="border-top: none;" width="127"&gt;&amp;nbsp;&amp;nbsp; 600007 &lt;/TD&gt;&lt;TD class="xl68" style="border-top: none; border-left: none;" width="185"&gt;RES SEPHAROSE FAST FLOW&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;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="36" style="border-top: none;" width="127"&gt;&amp;nbsp;&amp;nbsp; 600008 &lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;" width="185"&gt;RES EPHAROSE FAST FLOW&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;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="36" style="border-top: none;" width="127"&gt;&amp;nbsp;&amp;nbsp; 600008 &lt;/TD&gt;&lt;TD class="xl68" style="border-top: none; border-left: none;" width="185"&gt;RES SP SEPHAROSE FAST FLOW&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;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="54" style="border-top: none;" width="127"&gt;&amp;nbsp;&amp;nbsp; 600009 &lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;" width="185"&gt;RES MACR-PRP DRXYPTTE TYPE II80UM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="36" style="border-top: none;" width="127"&gt;&amp;nbsp;&amp;nbsp; 600015 &lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;" width="185"&gt;CHM 95% ETHYL 190 PROOF&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="36" style="border-top: none;" width="127"&gt;&amp;nbsp;&amp;nbsp; 600017 &lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;" width="185"&gt;CHM MES MONOHYDRATE FREE ACID CRYSTLLINE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl67" height="36" style="border-top: none;" width="127"&gt;&amp;nbsp;&amp;nbsp; 600017 &lt;/TD&gt;&lt;TD class="xl68" style="border-top: none; border-left: none;" width="185"&gt;CHM MES MONOHYDRATE FREE ACID CRYSTLLINE&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:39:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069621#M638628</guid>
      <dc:creator />
      <dc:date>2016-03-28T10:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069622#M638629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Spaces occurs both at the beginning and end of both material and material description&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:39:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069622#M638629</guid>
      <dc:creator />
      <dc:date>2016-03-28T10:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069623#M638630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With my own sample data I am able to achieve the trim function. But I'm not able to do the same with the excel data in the original datasource from excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think there is some problem with the data - Can you please help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:43:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069623#M638630</guid>
      <dc:creator />
      <dc:date>2016-03-28T10:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069624#M638631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can create a&amp;nbsp; maping table and use[ mapsubsring ]funcion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:50:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069624#M638631</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-03-28T10:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069625#M638632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please elaborate about it. How to do the mapping function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:51:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069625#M638632</guid>
      <dc:creator />
      <dc:date>2016-03-28T10:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069626#M638633</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Material) &lt;STRONG&gt;&amp;amp;' - '&amp;amp;&lt;/STRONG&gt; Trim([&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Material Desc]) As MaterialWithDesc&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give one space befr and after "-"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:52:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069626#M638633</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2016-03-28T10:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview script function to remove leading spaces at the end</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069627#M638634</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;Is it possible to post your sample excel file for more analysis?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2016 10:53:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-script-function-to-remove-leading-spaces-at-the-end/m-p/1069627#M638634</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2016-03-28T10:53:45Z</dc:date>
    </item>
  </channel>
</rss>

