<?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 Merge two numeric variables into one in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820618#M1213450</link>
    <description>&lt;P&gt;Hello. I would like to merge two numeric variables into one. Please note that they are stored in 2 separate tables&lt;/P&gt;&lt;P&gt;Please find below capture of what I would like to achieve. Tried concatenate load/join but does not work as intended&lt;/P&gt;&lt;P&gt;Thank you for your help and have a nice day!&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jul 2021 07:52:34 GMT</pubDate>
    <dc:creator>QlickySense</dc:creator>
    <dc:date>2021-07-08T07:52:34Z</dc:date>
    <item>
      <title>Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820618#M1213450</link>
      <description>&lt;P&gt;Hello. I would like to merge two numeric variables into one. Please note that they are stored in 2 separate tables&lt;/P&gt;&lt;P&gt;Please find below capture of what I would like to achieve. Tried concatenate load/join but does not work as intended&lt;/P&gt;&lt;P&gt;Thank you for your help and have a nice day!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jul 2021 07:52:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820618#M1213450</guid>
      <dc:creator>QlickySense</dc:creator>
      <dc:date>2021-07-08T07:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820621#M1213452</link>
      <description>&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;Try like below&lt;/P&gt;&lt;P&gt;T:&lt;BR /&gt;Load * Inline&lt;BR /&gt;[&lt;BR /&gt;Var1&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;3&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Load Var2 as Var1 Inline&lt;BR /&gt;[&lt;BR /&gt;Var2&lt;BR /&gt;1&lt;BR /&gt;2&lt;BR /&gt;4&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;BR /&gt;Final:&lt;BR /&gt;Load * Resident T Order by Var1;&lt;/P&gt;&lt;P&gt;O/P:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MayilVahanan_0-1625731762245.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58233i09381E71ED714D57/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MayilVahanan_0-1625731762245.png" alt="MayilVahanan_0-1625731762245.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jul 2021 08:09:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820621#M1213452</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2021-07-08T08:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820622#M1213453</link>
      <description>&lt;P&gt;Concatenate of both tables should work. That you couldn't see them as multiple records within the UI objects doesn't mean that the records aren't there. You may just check by counting them. If you really want to see them you need to add an unique record-identify within the load like rowno() and using it within the UI table, too.&lt;/P&gt;&lt;P&gt;- Marcus&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jul 2021 08:12:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820622#M1213453</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-07-08T08:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820638#M1213454</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28038"&gt;@marcus_sommer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your input. I've tried it like&lt;/P&gt;&lt;P&gt;NewTable:&lt;/P&gt;&lt;P&gt;Load Var1 as new_var FROM Table1&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;Load Var2 as new_var FROM Table 2&lt;/P&gt;&lt;P&gt;As a result I get NewTable.new_var however counts are not good. Some categories are missing, some categories have bad count, some are fine&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;Thank you for your input, however I got plenty of categories for each variable. Do I really need to specify it for each?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jul 2021 08:44:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820638#M1213454</guid>
      <dc:creator>QlickySense</dc:creator>
      <dc:date>2021-07-08T08:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820893#M1213481</link>
      <description>&lt;P&gt;I don't know how do you checked the results from this load but concatenating don't changed the values or is loosing any records. The results may be different from your expectation but this doesn't mandatory mean that the load is wrong else rather that your data are like you see them now.&lt;/P&gt;&lt;P&gt;To check them add recno() and rowno() within the load and display them together with the other fields within a table-box to see which values in which associations are really there.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 06:33:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820893#M1213481</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-07-09T06:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820906#M1213484</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28038"&gt;@marcus_sommer&lt;/a&gt;: I had a little investigation and I can say, that it concatenates in a good way if the sheet with concatenation is first one in the scrip. When I move it and before this concat several other tables load, it fails&lt;BR /&gt;&lt;BR /&gt;Any idea why is that? Does the concatenate variables needs to be maintained in first sheet always?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 07:37:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820906#M1213484</guid>
      <dc:creator>QlickySense</dc:creator>
      <dc:date>2021-07-09T07:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820927#M1213490</link>
      <description>&lt;P&gt;By using:&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;Concatenate // the same happens with joins, keep and so o n&lt;/P&gt;&lt;P&gt;Load Var2 as new_var FROM Table 2&lt;/P&gt;&lt;P&gt;the load will be always merged with the directly previous loaded table. But you could - and it's recommended to do it always in this way - specify to which table the merging should go, just by adding:&lt;/P&gt;&lt;P&gt;NewTable:&lt;/P&gt;&lt;P&gt;Load Var1 as new_var FROM Table1&lt;/P&gt;&lt;P&gt;Concatenate&lt;STRONG&gt;(NewTable)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Load Var2 as new_var FROM Table 2&lt;/P&gt;&lt;P&gt;and then the load-order isn't so important anymore unless that the target-table must be already loaded/existing.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 08:31:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1820927#M1213490</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-07-09T08:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1821060#M1213515</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28038"&gt;@marcus_sommer&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thank you, however I dont know what I am doing wrong&lt;/P&gt;&lt;P&gt;NewTable:&lt;BR /&gt;LOAD beca_rtn5 as NewVar from $(PEF_Data);&lt;/P&gt;&lt;P&gt;Concatenate(NewTable)&lt;/P&gt;&lt;P&gt;LOAD beca_rtn3 as NewVar from $(TEF_Data);&lt;BR /&gt;&lt;BR /&gt;as In result I got New Table with variables : NewTable.NewVar and PEF_Data&lt;BR /&gt;Works when I got this tab as a first though. Do i really need to maintain this order?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 14:05:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1821060#M1213515</guid>
      <dc:creator>QlickySense</dc:creator>
      <dc:date>2021-07-09T14:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1821063#M1213516</link>
      <description>&lt;P&gt;This "...&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;I got New Table with variables : &lt;STRONG&gt;NewTable.&lt;/STRONG&gt;NewVar&lt;/SPAN&gt; ..." indicates that there is any qualifying enabled. I'm not sure if this caused your issue but I suggest to remove the qualifying (renaming of fields should be always done explicitly).&lt;/P&gt;&lt;P&gt;In my experience is a sensible use of it very rare and quite often it caused a lot of trouble (nothing what couldn't be solved - but why should I solve problems which I don't have if I wouldn't use this feature ...).&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 14:17:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1821063#M1213516</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-07-09T14:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1821075#M1213519</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;Indeed, there are qualifiers. I've done it to distinguish the source (table) of variable - dataset is really huge and there are overlaps on variable names across the tables so it totally ruin the counts or other calculations. If there is no qualify - I have to ran every available chart and change its expression I guess.&lt;BR /&gt;&lt;BR /&gt;How to distinguish calculation, for example I got NameVar1 in both table A and B so Qlik automatically merge the variable.. It is something that can be done by set analysis like COUNT({$ &amp;lt;table={'tableA'}&amp;gt;} NameVar1) ? However I am very scared that entire dashboard will fall off (I've get it to do some adjustments, I am not a creator)&lt;BR /&gt;&lt;BR /&gt;Is there really any way to remove Qualify but keep variables as they are? I think about something along the lines:&lt;BR /&gt;&lt;BR /&gt;Table1:&lt;BR /&gt;variables&lt;BR /&gt;FROM source1&lt;BR /&gt;&lt;BR /&gt;NoConcatenate&lt;BR /&gt;Table2:&lt;BR /&gt;variables&lt;BR /&gt;FROM source2&lt;BR /&gt;&lt;BR /&gt;and so on? would it work?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 14:32:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1821075#M1213519</guid>
      <dc:creator>QlickySense</dc:creator>
      <dc:date>2021-07-09T14:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Merge two numeric variables into one</title>
      <link>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1821085#M1213520</link>
      <description>&lt;P&gt;Yes, removing the qualify may have a big effect within the script and all the UI dimensions/expressions and the resulting efforts to adjust everything might be really huge and even greater as re-creating the application from the scratch. Nevertheless I suggest to consider the last very carefully because maintaining a bad designed application could become a bigger nightmare as starting at the beginning again by applying all learnt things from the last months/years ...&lt;/P&gt;&lt;P&gt;In your special case you may directly before this load set an:&lt;/P&gt;&lt;P&gt;unqualify *;&lt;/P&gt;&lt;P&gt;and afterwards you enables it again with:&lt;/P&gt;&lt;P&gt;qualify *; // respectively with those fields which should be regarded for it&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jul 2021 14:56:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Merge-two-numeric-variables-into-one/m-p/1821085#M1213520</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2021-07-09T14:56:10Z</dc:date>
    </item>
  </channel>
</rss>

