<?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 special characters and split into rows in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823926#M1213808</link>
    <description>&lt;DIV class="topic-subject-wrapper"&gt;&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt;&lt;DIV class="MessageSubject"&gt;&lt;DIV class="lia-message-subject"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="MessageInResponseTo lia-component-message-view-widget-in-response-to lia-component-in-response-to"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;I wanted to remove $ character in the below values. The $ character within the string represents different values, which should be moved into separate rows.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;BR /&gt;LOAD *&lt;BR /&gt;INLINE [&lt;BR /&gt;Key, Value&lt;BR /&gt;58, $London city$New York$&lt;BR /&gt;66, $Tokyo$New Delhi$&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;Key, Value&lt;BR /&gt;58, London city&lt;BR /&gt;58, New York&lt;BR /&gt;66, Tokyo&lt;BR /&gt;66, New Delhi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please help&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 22 Jul 2021 14:31:36 GMT</pubDate>
    <dc:creator>surajap123</dc:creator>
    <dc:date>2021-07-22T14:31:36Z</dc:date>
    <item>
      <title>Remove special characters and split into rows</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823926#M1213808</link>
      <description>&lt;DIV class="topic-subject-wrapper"&gt;&lt;DIV class="lia-message-subject lia-component-message-view-widget-subject"&gt;&lt;DIV class="MessageSubject"&gt;&lt;DIV class="lia-message-subject"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="MessageInResponseTo lia-component-message-view-widget-in-response-to lia-component-in-response-to"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;I wanted to remove $ character in the below values. The $ character within the string represents different values, which should be moved into separate rows.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;BR /&gt;LOAD *&lt;BR /&gt;INLINE [&lt;BR /&gt;Key, Value&lt;BR /&gt;58, $London city$New York$&lt;BR /&gt;66, $Tokyo$New Delhi$&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;Key, Value&lt;BR /&gt;58, London city&lt;BR /&gt;58, New York&lt;BR /&gt;66, Tokyo&lt;BR /&gt;66, New Delhi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please help&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Jul 2021 14:31:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823926#M1213808</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2021-07-22T14:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters and split into rows</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823930#M1213809</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/36347"&gt;@surajap123&lt;/a&gt;&amp;nbsp; try below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Table:
load *
where len(trim(Value))&amp;gt;0;
LOAD Key,
     subfield(Value,'$') as Value
FROM table;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 20:10:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823930#M1213809</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2021-07-22T20:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters and split into rows</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823936#M1213810</link>
      <description>&lt;P&gt;I tried it, seems it didn't work.&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 14:49:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823936#M1213810</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2021-07-22T14:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters and split into rows</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823958#M1213812</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/36347"&gt;@surajap123&lt;/a&gt;&amp;nbsp; when you take&amp;nbsp; a resident load if columns are same then it will autoconcatenate with previous table so add noconcatenate before you do resident load&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;load *&lt;BR /&gt;where len(trim(Value))&amp;gt;0;&lt;BR /&gt;LOAD Key,&lt;BR /&gt;subfield(Value,'$') as Value&lt;BR /&gt;Resident Table;&lt;/P&gt;&lt;P&gt;DROP table Table;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 15:46:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823958#M1213812</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2021-07-22T15:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Remove special characters and split into rows</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823992#M1213817</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 19:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-special-characters-and-split-into-rows/m-p/1823992#M1213817</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2021-07-22T19:02:26Z</dc:date>
    </item>
  </channel>
</rss>

