<?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 Multiple values in single field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160414#M34700</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I still haven't found a resolution to this problem. Any thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2009 18:08:29 GMT</pubDate>
    <dc:creator>jatishqv</dc:creator>
    <dc:date>2009-08-25T18:08:29Z</dc:date>
    <item>
      <title>Multiple values in single field</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160408#M34694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I am having trouble figuring out how to tackle this issue. I am using OLEDB connection to a .mdb that has various fields that have mutilpe values in a single field. These multiple values are delimited by a double character space.&lt;/P&gt;&lt;P&gt;I am able to use the subfield function to seperate the field, but this causes extra rows to be added to the dataset.&lt;/P&gt;&lt;P&gt;I.e&lt;/P&gt;&lt;P&gt;ID number,Mutiple_Field,Regular_field,&lt;/P&gt;&lt;P&gt;1, Apples Carrots,Mike,&lt;/P&gt;&lt;P&gt;2, Apples Orange,John,&lt;/P&gt;&lt;P&gt;3, Kiwi Grapes,John,&lt;/P&gt;&lt;P&gt;Without using the subfield function on 'Mutiple_Field' and I did a frequency count on regular field in would got Mike =1, John = 2,&lt;/P&gt;&lt;P&gt;When using the Subfield function, subfield(Mutiple_Field, ' ') as Multiple, I would get Mike =2 and John = 4, the frequncy count for Mutiple_field would be correct, as long as I only used one subfield function.&lt;/P&gt;&lt;P&gt;To summarize I would like the mutiple_field to be handled seprately so it does not affect other fields in the DB.&lt;/P&gt;&lt;P&gt;I hope that all makes sense, if anybody needs any more info to be of assistance please get back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Jat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 23:36:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160408#M34694</guid>
      <dc:creator>jatishqv</dc:creator>
      <dc:date>2009-08-18T23:36:01Z</dc:date>
    </item>
    <item>
      <title>AW:Multiple values in single field</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160409#M34695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jatish,&lt;/P&gt;&lt;P&gt;I think I don't see what you are intending to do. You could make a loose table with the subfield split, but there wouldn't be a join with the regular field or the ID any more of course. Could you perhaps show the intended result?&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Joachim&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 23:53:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160409#M34695</guid>
      <dc:creator>biester</dc:creator>
      <dc:date>2009-08-18T23:53:00Z</dc:date>
    </item>
    <item>
      <title>Multiple values in single field</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160410#M34696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, if you split the table in ID Number / Multiple field (with the subfield() function without column as you did) and ID Number / Regular Field (a name apparently)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 00:03:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160410#M34696</guid>
      <dc:creator>hector</dc:creator>
      <dc:date>2009-08-19T00:03:37Z</dc:date>
    </item>
    <item>
      <title>Multiple values in single field</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160411#M34697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jat,&lt;BR /&gt;The natural way to go is to keep it in two separate tables:&lt;BR /&gt;1. ID number, Mutiple_Field, Regular_field&lt;BR /&gt;2. Mutiple_Field, Multiple&lt;BR /&gt;So, the counts will be clean. The Mutiple_Field is the link. If you wish, you can convert it into something more compact, for example by using autonumber.&lt;BR /&gt;The less natural but usable way is to leave as it is in your example, but use aggr in count:&lt;BR /&gt;aggr(count(whatever), ID number)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 09:19:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160411#M34697</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-19T09:19:24Z</dc:date>
    </item>
    <item>
      <title>Multiple values in single field</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160412#M34698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the replies! Michael I think you hit the nail on the head.&lt;/P&gt;&lt;P&gt;Where I was going wrong was, using the ID number as the key field, instead of the Multiple_Field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;LOAD `Multiple_Field`,&lt;BR /&gt;'Normal_Field_1`,&lt;BR /&gt;'Normal_Field_2`,&lt;BR /&gt;'Normal_Field_3`,&lt;BR /&gt; ID;&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM `PRF_Data`;&lt;BR /&gt;&lt;BR /&gt;Load_Multiple_Field:&lt;BR /&gt;LOAD `Multiple_Field`,&lt;BR /&gt;subfield(`Multiple_Field`, ' ') as Multiple_ Field_s;&lt;BR /&gt;SQL SELECT `Multiple_Field`&lt;BR /&gt;FROM `PRF_Data`;&lt;BR /&gt;&lt;BR /&gt;Apply_Multiple_Field:&lt;BR /&gt;Load Multiple_ Field_s,&lt;BR /&gt;ApplyMap('Map_Call_Info', Multiple_Field_s) as 'Multiple Field'&lt;BR /&gt;Resident Load_Call_Info;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;That is an example of the code I am using as I need to map the numerical values to real life values, and this works a treat. I'm not sure if its the best way but it does work.&lt;/P&gt;&lt;P&gt;Thanks a lot Michael!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 18:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160412#M34698</guid>
      <dc:creator>jatishqv</dc:creator>
      <dc:date>2009-08-19T18:44:16Z</dc:date>
    </item>
    <item>
      <title>Multiple values in single field</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160413#M34699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It appears I spoke to soon.&lt;/P&gt;&lt;P&gt;The multiple_field splits ok, and making a selection on that list box affects other fields as it should. But if I clear the selections and make a selection on another 'regular' list box, the changes aren't reflected on the multiple_field list box.&lt;/P&gt;&lt;P&gt;I have attached a copy of the .qvw and would be grateful if someone could have a look and let me know where I am going wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Jat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2009 21:02:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160413#M34699</guid>
      <dc:creator>jatishqv</dc:creator>
      <dc:date>2009-08-21T21:02:58Z</dc:date>
    </item>
    <item>
      <title>Multiple values in single field</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160414#M34700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I still haven't found a resolution to this problem. Any thoughts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2009 18:08:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160414#M34700</guid>
      <dc:creator>jatishqv</dc:creator>
      <dc:date>2009-08-25T18:08:29Z</dc:date>
    </item>
    <item>
      <title>Multiple values in single field</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160415#M34701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jat,&lt;BR /&gt;I didn't notice anything wrong in you application. Can tell what exactly doesn't work as you expect?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2009 09:11:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-values-in-single-field/m-p/160415#M34701</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-26T09:11:47Z</dc:date>
    </item>
  </channel>
</rss>

