<?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 Combine several fields into one in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145421#M24145</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Karin, Pls try this:&lt;/P&gt;&lt;P&gt;AgeTemp:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; Consumer, Young, Adult, Ageing&lt;BR /&gt; Q, x, ,&lt;BR /&gt; W, x, x,&lt;BR /&gt; E, , , x&lt;BR /&gt; R, , x,&lt;BR /&gt; T, , x, x&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;[temp]:&lt;BR /&gt;CROSSTABLE(Category, flag)&lt;BR /&gt;LOAD Consumer,&lt;BR /&gt; Young,&lt;BR /&gt; Adult,&lt;BR /&gt; Ageing&lt;BR /&gt;RESIDENT AgeTemp;&lt;/P&gt;&lt;P&gt;[Consumer]:&lt;BR /&gt;noconcatenate LOAD Consumer, Category, flag&lt;BR /&gt;RESIDENT [temp] WHERE flag = 'x';&lt;/P&gt;&lt;P&gt;DROP field flag;&lt;BR /&gt;DROP table temp;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;-Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 May 2009 18:15:49 GMT</pubDate>
    <dc:creator>amit_shetty78</dc:creator>
    <dc:date>2009-05-29T18:15:49Z</dc:date>
    <item>
      <title>Combine several fields into one</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145417#M24141</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'm quite new with QlikView and need help with something that probably is very easy, it's just that I don't know where to start.&lt;/P&gt;&lt;P&gt;I have a number of fields in my excel sheet where you insert a "x" in different columns in order to tell if your consumers are: Young and/or Adult and/or Aging. Right now these are in there different fields and I can not make a list box to be able to search for all the Young consumers. How can I do to combine these three fields into one?&lt;/P&gt;&lt;P&gt;Anyone that answers to my simple question: THANK YOU!&lt;/P&gt;&lt;P&gt;Karin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 14:37:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145417#M24141</guid>
      <dc:creator />
      <dc:date>2009-05-29T14:37:09Z</dc:date>
    </item>
    <item>
      <title>Combine several fields into one</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145418#M24142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Karin,&lt;/P&gt;&lt;P&gt;please provide a short excel example we ca play around with.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 16:33:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145418#M24142</guid>
      <dc:creator />
      <dc:date>2009-05-29T16:33:13Z</dc:date>
    </item>
    <item>
      <title>Combine several fields into one</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145419#M24143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;////Let's suppose this is your xls file:&lt;BR /&gt;AgeTemp:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; Consumer, Young, Adult, Aging&lt;BR /&gt; Q, x&lt;BR /&gt; W, , x&lt;BR /&gt; E, , , x&lt;BR /&gt; R, , x&lt;BR /&gt; T, , x&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;////After that, you create a new table with a conditional field based on the information provided in your original mark fields&lt;BR /&gt;Age:&lt;BR /&gt;LOAD&lt;BR /&gt; Consumer,&lt;BR /&gt; If(lower(Young)='x','Young', If(lower(Adult)='x','Adult','Aging')) as Age ////This is where all it happens&lt;BR /&gt;RESIDENT AgeTemp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;////Finally you can drop your original table&lt;BR /&gt;Drop Table AgeTemp;&lt;BR /&gt;&lt;BR /&gt;////the script is a little bit more complicated if you have consumers that are both young and adult in the same time&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 17:01:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145419#M24143</guid>
      <dc:creator />
      <dc:date>2009-05-29T17:01:41Z</dc:date>
    </item>
    <item>
      <title>Combine several fields into one</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145420#M24144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the attachment.&lt;/P&gt;&lt;P&gt;if the attached application doesnt solve your purpose.&lt;/P&gt;&lt;P&gt;Post your sample data.&lt;/P&gt;&lt;P style="font-weight: bold"&gt;- Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 17:30:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145420#M24144</guid>
      <dc:creator />
      <dc:date>2009-05-29T17:30:30Z</dc:date>
    </item>
    <item>
      <title>Combine several fields into one</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145421#M24145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Karin, Pls try this:&lt;/P&gt;&lt;P&gt;AgeTemp:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; Consumer, Young, Adult, Ageing&lt;BR /&gt; Q, x, ,&lt;BR /&gt; W, x, x,&lt;BR /&gt; E, , , x&lt;BR /&gt; R, , x,&lt;BR /&gt; T, , x, x&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;[temp]:&lt;BR /&gt;CROSSTABLE(Category, flag)&lt;BR /&gt;LOAD Consumer,&lt;BR /&gt; Young,&lt;BR /&gt; Adult,&lt;BR /&gt; Ageing&lt;BR /&gt;RESIDENT AgeTemp;&lt;/P&gt;&lt;P&gt;[Consumer]:&lt;BR /&gt;noconcatenate LOAD Consumer, Category, flag&lt;BR /&gt;RESIDENT [temp] WHERE flag = 'x';&lt;/P&gt;&lt;P&gt;DROP field flag;&lt;BR /&gt;DROP table temp;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;-Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 18:15:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145421#M24145</guid>
      <dc:creator>amit_shetty78</dc:creator>
      <dc:date>2009-05-29T18:15:49Z</dc:date>
    </item>
    <item>
      <title>Combine several fields into one</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145422#M24146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;[View:http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/8004.ConceptDatabase.xls:550:0]&lt;/P&gt;&lt;P&gt;Hi Rainer,&lt;/P&gt;&lt;P&gt;Here is a part of my excel file. Unfortunatelly I will have to insert my data in this way.&lt;/P&gt;&lt;P&gt;One thing that came to my mind was to load columns regarding age group seperate from the rest of the data and transpose the data. I will try and see what happens.&lt;/P&gt;&lt;P&gt;Thank you very much for helping me.&lt;/P&gt;&lt;P&gt;Karin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 18:16:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145422#M24146</guid>
      <dc:creator />
      <dc:date>2009-05-29T18:16:23Z</dc:date>
    </item>
    <item>
      <title>Combine several fields into one</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145423#M24147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Karin,&lt;/P&gt;&lt;P&gt;Tried the following in my load script using your excel. Hope this is what you are looking to achieve.&lt;/P&gt;&lt;P&gt;Directory;&lt;BR /&gt;CROSSTABLE(Concept_Category, Flag, 2)&lt;BR /&gt;LOAD [Project Name],&lt;BR /&gt; [Concept Name],&lt;BR /&gt; [Micro portion],&lt;BR /&gt; [Portion pack],&lt;BR /&gt; [Family pack],&lt;BR /&gt; [Large size],&lt;BR /&gt; Young,&lt;BR /&gt; Adult,&lt;BR /&gt; Aging,&lt;BR /&gt; [On The Go],&lt;BR /&gt; [In Home],&lt;BR /&gt; WM,&lt;BR /&gt; OLDP,&lt;BR /&gt; JN,&lt;BR /&gt; SD,&lt;BR /&gt; [F&amp;amp;W]&lt;BR /&gt;FROM "8004[1][1].ConceptDatabase.xls" (biff, header is line, embedded labels, table is ConceptInfo$)&lt;BR /&gt;WHERE [Project Name] = 'Shapes' AND [Concept Name] &amp;lt;&amp;gt; '';&lt;/P&gt;&lt;P&gt;DROP field Flag;&lt;/P&gt;&lt;P&gt;- Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 18:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145423#M24147</guid>
      <dc:creator>amit_shetty78</dc:creator>
      <dc:date>2009-05-29T18:42:26Z</dc:date>
    </item>
    <item>
      <title>Combine several fields into one</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145424#M24148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hi all,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I have now tired all your suggestions and I realize that I have to clearify what I need. What I want to do is to make one field called Consumer, containing, Young, Adult and Aging. Another field called Occasion containing [On the Go] and [In Home], etc.&lt;/P&gt;&lt;P&gt;The closes solution was the one suggested by &lt;STRONG&gt;Sridhar,&lt;/STRONG&gt; I have also find this similar solution in anothe application that we have where we need to put three fields into one. Unfortunatelly this didn't work all the way but hopefully I can do it looking at the other application we have. In our other application we want to make one field out of three fields all containing one keyword, it looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;EM&gt;WORDS_1:&lt;/EM&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; %Key_Word_Data,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;File,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;[Word 1] &lt;B&gt;as&lt;/B&gt; Word&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; RAWDATA;&lt;/P&gt;&lt;P style="font-weight: bold; margin: 0pt; mso-layout-grid-align: none"&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; %Key_Word_Data,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;File,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;[Word 2] &lt;B&gt;as&lt;/B&gt; Word&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; RAWDATA;&lt;/P&gt;&lt;P style="font-weight: bold; margin: 0pt; mso-layout-grid-align: none"&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; %Key_Word_Data,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;File,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;[Word 3] &lt;B&gt;as&lt;/B&gt; Word&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; RAWDATA;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;EM&gt;WORDS_2:&lt;/EM&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; %Key_Word_Data,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;File &amp;amp; '-' &amp;amp; Word &lt;B&gt;as&lt;/B&gt; JoinKey,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;Word&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; WORDS_1;&lt;/P&gt;&lt;P style="font-weight: bold; margin: 0pt; mso-layout-grid-align: none"&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;DROP&lt;/B&gt; &lt;B&gt;TABLE&lt;/B&gt; &lt;EM&gt;WORDS_1;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-weight: bold; margin: 0pt; mso-layout-grid-align: none"&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;left&lt;/B&gt; &lt;B&gt;join&lt;/B&gt; (&lt;EM&gt;WORDS_2&lt;/EM&gt;)&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; File &amp;amp; '-' &amp;amp; [Word to translate] &lt;B&gt;as&lt;/B&gt; JoinKey,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;Score,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;[English word]&lt;/P&gt;&lt;P style="font-weight: bold; margin: 0pt; mso-layout-grid-align: none"&gt;//[Word to translate] as Word&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; TRANSLATE ;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;EM&gt;WORDS:&lt;/EM&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; %Key_Word_Data,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;Score,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;[English word],&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;Word&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; WORDS_2;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;DROP&lt;/B&gt; &lt;B&gt;TABLE&lt;/B&gt; &lt;EM&gt;WORDS_2;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;DROP&lt;/B&gt; &lt;B&gt;TABLE&lt;/B&gt; &lt;EM&gt;TRANSLATE;&lt;/EM&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each project we have one excel file so it makes it a bit more complicated. filename() '-' recno() as %Key_Word_Data&lt;/P&gt;&lt;P&gt;I don't know if this can help you. As I wrote before, I'm very green at this and often use copy-paste from other applications, I do not always really know what I am doing.&lt;/P&gt;&lt;P&gt;Thanks all for your great help&lt;/P&gt;&lt;P&gt;Karin&lt;/P&gt;&lt;P&gt;Unfortunatelly I can't send you the whole application while it's very confidential...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 19:22:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145424#M24148</guid>
      <dc:creator />
      <dc:date>2009-05-29T19:22:21Z</dc:date>
    </item>
    <item>
      <title>Combine several fields into one</title>
      <link>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145425#M24149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for your help. I solved it like this:&lt;/P&gt;&lt;P style="font-style: italic; margin: 0pt; mso-layout-grid-align: none"&gt;CONSUMER_1:&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; %Key_Data,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;File,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;if(Young='x', 'Young') &lt;B&gt;as&lt;/B&gt; Consumer&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; ConceptInfo;&lt;/P&gt;&lt;P style="font-weight: bold; margin: 0pt; mso-layout-grid-align: none"&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; %Key_Data,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;File,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;if(Adult='x', 'Adult') &lt;B&gt;as&lt;/B&gt; Consumer&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; ConceptInfo;&lt;/P&gt;&lt;P style="font-weight: bold; margin: 0pt; mso-layout-grid-align: none"&gt;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; %Key_Data,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;File,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;if(Aging='x','Aging') &lt;B&gt;as&lt;/B&gt; Consumer&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; ConceptInfo;&lt;/P&gt;&lt;P style="font-style: italic; margin: 0pt; mso-layout-grid-align: none"&gt;&lt;/P&gt;&lt;P style="font-style: italic; margin: 0pt; mso-layout-grid-align: none"&gt;&lt;/P&gt;&lt;P style="font-style: italic; margin: 0pt; mso-layout-grid-align: none"&gt;CONSUMER:&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;LOAD&lt;/B&gt; %Key_Data,&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;Consumer&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;RESIDENT&lt;/B&gt; CONSUMER_1;&lt;/P&gt;&lt;P style="margin:0pt;mso-layout-grid-align:none;"&gt;&lt;B&gt;DROP&lt;/B&gt; &lt;B&gt;TABLE&lt;/B&gt; &lt;I&gt;CONSUMER_1;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Thank you all. I'll come back soon with another problem because I realized that this is the best place to get answers. Before I have been looking in the manuals but it takes too much time.&lt;/P&gt;&lt;P&gt;Have a nice weekend.&lt;/P&gt;&lt;P&gt;Karin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 May 2009 19:48:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Combine-several-fields-into-one/m-p/145425#M24149</guid>
      <dc:creator />
      <dc:date>2009-05-29T19:48:37Z</dc:date>
    </item>
  </channel>
</rss>

