<?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 Transform Data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Transform-Data/m-p/1557553#M743330</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I want to transform the data :&lt;/P&gt;&lt;P&gt;Field Title:&lt;/P&gt;&lt;P&gt;{"DATASET":"1"}&lt;BR /&gt;{"SOFTWARE":"5"}&lt;BR /&gt;{"SOFTWARE":"5,2","DATASET":"2"}&lt;BR /&gt;{"VENDOR":"1"}&lt;BR /&gt;{"VENDOR":"1,2","JOB_TITLE":"1"}&lt;BR /&gt;{"VENDOR":"2"}&lt;BR /&gt;NULL&lt;/P&gt;&lt;P&gt;Into&amp;nbsp;&lt;/P&gt;&lt;P&gt;Title, Value&lt;/P&gt;&lt;P&gt;DATASET, 1&lt;BR /&gt;SOFTWARE, 5&lt;BR /&gt;SOFTWARE,5&lt;/P&gt;&lt;P&gt;SOFTWARE,2&lt;/P&gt;&lt;P&gt;DATASET, 2&lt;BR /&gt;VENDOR,1&lt;BR /&gt;VENDOR,1&lt;/P&gt;&lt;P&gt;VENDOR,2&lt;/P&gt;&lt;P&gt;JOB_TITLE,1&lt;/P&gt;&lt;P&gt;NULL&lt;/P&gt;&lt;P&gt;{"VENDOR":"2"}&lt;BR /&gt;NULL&lt;/P&gt;&lt;P&gt;Thanks for your help,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 04:08:54 GMT</pubDate>
    <dc:creator>Judicael</dc:creator>
    <dc:date>2024-11-16T04:08:54Z</dc:date>
    <item>
      <title>Transform Data</title>
      <link>https://community.qlik.com/t5/QlikView/Transform-Data/m-p/1557553#M743330</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I want to transform the data :&lt;/P&gt;&lt;P&gt;Field Title:&lt;/P&gt;&lt;P&gt;{"DATASET":"1"}&lt;BR /&gt;{"SOFTWARE":"5"}&lt;BR /&gt;{"SOFTWARE":"5,2","DATASET":"2"}&lt;BR /&gt;{"VENDOR":"1"}&lt;BR /&gt;{"VENDOR":"1,2","JOB_TITLE":"1"}&lt;BR /&gt;{"VENDOR":"2"}&lt;BR /&gt;NULL&lt;/P&gt;&lt;P&gt;Into&amp;nbsp;&lt;/P&gt;&lt;P&gt;Title, Value&lt;/P&gt;&lt;P&gt;DATASET, 1&lt;BR /&gt;SOFTWARE, 5&lt;BR /&gt;SOFTWARE,5&lt;/P&gt;&lt;P&gt;SOFTWARE,2&lt;/P&gt;&lt;P&gt;DATASET, 2&lt;BR /&gt;VENDOR,1&lt;BR /&gt;VENDOR,1&lt;/P&gt;&lt;P&gt;VENDOR,2&lt;/P&gt;&lt;P&gt;JOB_TITLE,1&lt;/P&gt;&lt;P&gt;NULL&lt;/P&gt;&lt;P&gt;{"VENDOR":"2"}&lt;BR /&gt;NULL&lt;/P&gt;&lt;P&gt;Thanks for your help,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:08:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transform-Data/m-p/1557553#M743330</guid>
      <dc:creator>Judicael</dc:creator>
      <dc:date>2024-11-16T04:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Transform Data</title>
      <link>https://community.qlik.com/t5/QlikView/Transform-Data/m-p/1557595#M743331</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;First of all you would need to replace some symbols in your values to be able to distinguish "internal" and "external" separators and after that iteratively apply subfield() function to achieve desired result.&lt;/P&gt;&lt;P&gt;PFA example, however perhaps you would need to adjust it to your data.&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;//Andrei&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 01:01:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transform-Data/m-p/1557595#M743331</guid>
      <dc:creator>crusader_</dc:creator>
      <dc:date>2019-03-18T01:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Transform Data</title>
      <link>https://community.qlik.com/t5/QlikView/Transform-Data/m-p/1557723#M743332</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load *, PurgeChar(Subfield(Title, ':', 1), '"') as Feild;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Load *, Subfield(PurgeChar(Subfield(Title, ':', 2), '"'), ',') as Value;&lt;/STRONG&gt;&lt;BR /&gt;Load * inline [&lt;BR /&gt;Title&lt;BR /&gt;"DATASET":"1"&lt;BR /&gt;"SOFTWARE":"5"&lt;BR /&gt;"SOFTWARE":"5,2","DATASET":"2"&lt;BR /&gt;"VENDOR":"1"&lt;BR /&gt;"VENDOR":"1,2","JOB_TITLE":"1"&lt;BR /&gt;"VENDOR":"2"&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;-Raju&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 09:27:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Transform-Data/m-p/1557723#M743332</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2019-03-18T09:27:35Z</dc:date>
    </item>
  </channel>
</rss>

