<?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: Read fields and values from a record in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Read-fields-and-values-from-a-record/m-p/923755#M652741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could split them within qv in a way like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t1:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Record ID], Timestamp, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subfield(Data, ':', 1) as Fieldname, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subfield(Data, ':', 2) as Fieldvalue;&lt;/P&gt;&lt;P&gt;Load [Record ID], Timestamp, subfield(Data, ',') as Data;&lt;/P&gt;&lt;P&gt;SQL Select * From db;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not absolutely if the first subfield-statement worked within a preceeding-load (if not you could replace it with a normal resident load). Are Fieldname and Fieldvalue not real fields + values else more a kind of category with value you are already finish. Are this real fields you need a further generic load to create them as fields, see: &lt;A href="https://community.qlik.com/docs/DOC-3020"&gt;Generic Load&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Jul 2015 10:33:29 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2015-07-31T10:33:29Z</dc:date>
    <item>
      <title>Read fields and values from a record</title>
      <link>https://community.qlik.com/t5/QlikView/Read-fields-and-values-from-a-record/m-p/923754#M652740</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;im not a Master in scriping and i have the following problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a table (on sql server) with 3 fields:&lt;/P&gt;&lt;P&gt;1. Record ID&lt;/P&gt;&lt;P&gt;2. Timestamp&lt;/P&gt;&lt;P&gt;3. Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside the 3rd field i call "Data", i have several data like Field1:SomeValue, Field2: SomeValue,...,Field_N:SomeValue&lt;/P&gt;&lt;P&gt;the fields inside "Data" are not the same (in many records they start with "Field2" or "Field3" etc) and previous fields are missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had an idea to export this table to TXT file and import again spliting data field to many Fields like @1, @2, @3 etc.&lt;/P&gt;&lt;P&gt;but inside 1st field @1 in some records i will have from "Data" the "Field1" and in some records i will have "Field2" or "Field3" etrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a way to read directly from "Data" field the several Fields and Values ?&lt;/P&gt;&lt;P&gt;Format is allways like Field1:SomeValue,Field2:SomeValue,Field3:SomeValue ....&lt;/P&gt;&lt;P&gt;The number of Fields inside the "Data" field are not specific&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: 13px;"&gt;Any help will be appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2015 09:47:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Read-fields-and-values-from-a-record/m-p/923754#M652740</guid>
      <dc:creator>parispantelis</dc:creator>
      <dc:date>2015-07-31T09:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Read fields and values from a record</title>
      <link>https://community.qlik.com/t5/QlikView/Read-fields-and-values-from-a-record/m-p/923755#M652741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could split them within qv in a way like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t1:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Record ID], Timestamp, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subfield(Data, ':', 1) as Fieldname, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subfield(Data, ':', 2) as Fieldvalue;&lt;/P&gt;&lt;P&gt;Load [Record ID], Timestamp, subfield(Data, ',') as Data;&lt;/P&gt;&lt;P&gt;SQL Select * From db;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not absolutely if the first subfield-statement worked within a preceeding-load (if not you could replace it with a normal resident load). Are Fieldname and Fieldvalue not real fields + values else more a kind of category with value you are already finish. Are this real fields you need a further generic load to create them as fields, see: &lt;A href="https://community.qlik.com/docs/DOC-3020"&gt;Generic Load&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2015 10:33:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Read-fields-and-values-from-a-record/m-p/923755#M652741</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-31T10:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Read fields and values from a record</title>
      <link>https://community.qlik.com/t5/QlikView/Read-fields-and-values-from-a-record/m-p/923756#M652742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;worked !!!&lt;/P&gt;&lt;P&gt;thanks Marcus &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2015 12:42:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Read-fields-and-values-from-a-record/m-p/923756#M652742</guid>
      <dc:creator>parispantelis</dc:creator>
      <dc:date>2015-07-31T12:42:55Z</dc:date>
    </item>
  </channel>
</rss>

