<?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 Remove space in emailadresses in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683601#M450232</link>
    <description>&lt;P&gt;I got a qvw that reads in data from excel and then adds it to nPrint.&lt;BR /&gt;No spaces are allowed in [e-post] as well it has to be lowercase.&lt;/P&gt;&lt;P&gt;I sorted out the lower as&amp;nbsp;lower([e-post]) as [e-post],&lt;/P&gt;&lt;P&gt;Can I make one line to handle both the lower and the remove of spaces in e-post?&lt;/P&gt;&lt;P&gt;I read about 10 posts in the forum but could not find anything that worked, I tried a few different trims, replace etc.&lt;/P&gt;&lt;P&gt;The space can be anywhere in the e-mail, it's users who adds them.&lt;/P&gt;</description>
    <pubDate>Wed, 11 Mar 2020 07:32:31 GMT</pubDate>
    <dc:creator>JacobT</dc:creator>
    <dc:date>2020-03-11T07:32:31Z</dc:date>
    <item>
      <title>Remove space in emailadresses</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683601#M450232</link>
      <description>&lt;P&gt;I got a qvw that reads in data from excel and then adds it to nPrint.&lt;BR /&gt;No spaces are allowed in [e-post] as well it has to be lowercase.&lt;/P&gt;&lt;P&gt;I sorted out the lower as&amp;nbsp;lower([e-post]) as [e-post],&lt;/P&gt;&lt;P&gt;Can I make one line to handle both the lower and the remove of spaces in e-post?&lt;/P&gt;&lt;P&gt;I read about 10 posts in the forum but could not find anything that worked, I tried a few different trims, replace etc.&lt;/P&gt;&lt;P&gt;The space can be anywhere in the e-mail, it's users who adds them.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 07:32:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683601#M450232</guid>
      <dc:creator>JacobT</dc:creator>
      <dc:date>2020-03-11T07:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space in emailadresses</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683627#M450234</link>
      <description>&lt;P&gt;Maybe: lower(purgechar([e-post], ' ')) as [e-post]&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 08:33:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683627#M450234</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2020-03-11T08:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space in emailadresses</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683628#M450235</link>
      <description>&lt;P&gt;trim(PurgeChar([e-post],' ')) as [e-post], this solved first problem,&lt;BR /&gt;but can I incoporate lower on the same line?&lt;/P&gt;&lt;P&gt;I used to have&amp;nbsp;lower([e-post]) as [e-post] for the lower before I added this.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 08:33:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683628#M450235</guid>
      <dc:creator>JacobT</dc:creator>
      <dc:date>2020-03-11T08:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space in emailadresses</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683629#M450236</link>
      <description>&lt;P&gt;Hi JacobT,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Lower(Replace([e-post], ' ', '')) as [e-post],&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 08:34:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683629#M450236</guid>
      <dc:creator>Stoyan_Terziev</dc:creator>
      <dc:date>2020-03-11T08:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space in emailadresses</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683634#M450238</link>
      <description>&lt;P&gt;lower(PurgeChar([e-post],' ')) as [e-post], worked space between '' ofc, thank you for the help!&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 08:37:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683634#M450238</guid>
      <dc:creator>JacobT</dc:creator>
      <dc:date>2020-03-11T08:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space in emailadresses</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683637#M450239</link>
      <description>&lt;P&gt;You could easily nest these functions - depending on the task (not in this case) it might be useful to apply functions like lower/upper at the most inside because it could reduce the efforts with the keepchar/purgechar and similar.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 08:38:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683637#M450239</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2020-03-11T08:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space in emailadresses</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683638#M450240</link>
      <description>&lt;P&gt;Both these expressions should work:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;PurgeChar( Lower([e-m ai l]), ' ')&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Replace( Lower([e-m ai l]), ' ','')&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using this script:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOAD * inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;e-m ai l&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;jacob T@qlikcommunity.com&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Vegar@ qlik community.com];&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2020 08:39:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-space-in-emailadresses/m-p/1683638#M450240</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-03-11T08:39:01Z</dc:date>
    </item>
  </channel>
</rss>

