<?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>idea Re: Real Loosen Tables - Status changed to: Open - Collecting Feedback in Suggest an Idea</title>
    <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2013710#M11101</link>
    <description />
    <pubDate>Wed, 07 Dec 2022 12:08:39 GMT</pubDate>
    <dc:creator>Ian_Crosland</dc:creator>
    <dc:date>2022-12-07T12:08:39Z</dc:date>
    <item>
      <title>Real Loosen Tables</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idi-p/1776107</link>
      <description>&lt;P&gt;Hello all,&lt;BR /&gt;&lt;BR /&gt;I work on a project where I try to offer to the user an access to some dozens of table. Of course, in order to prevent bad joining or lnking, I have to break the relation between tables. I have, as far know, two options for that&amp;nbsp; : qualify or loosen table. If you're not familiar with it : a loosen table is a table without any link to the other table.&lt;BR /&gt;&lt;A href="https://help.qlik.com/fr-FR/sense/November2020/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/loosen-table.htm" target="_blank"&gt;https://help.qlik.com/fr-FR/sense/November2020/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/loosen-table.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;So, let's test :&lt;/P&gt;&lt;LI-CODE lang="c"&gt;TABLEA:
LOAD * Inline
[FIELD_A, FIELD_B, FIELD_C
VALUEA1,VALUEB1,100
VALUEA2,VALUEB2,200]
;

loosen table TABLEA;
NoConcatenate
TABLEB:
LOAD * Inline
[FIELD_A, FIELD_D, FIELD_C
VALUEA1,VALUEB1,100
VALUEA3,VALUEB2,200]
;
loosen table TABLEB;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Result :&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 483px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47516i8CC958E5AEC83B05/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Sounds cool, let's go further and build a table :&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 561px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47517iD1789E4317E55FB5/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Sooooooo, basically, next step, I should only show the value in TableA.&lt;BR /&gt;Wait for it....&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="simonaubert_0-1611173337340.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47518iEF690BD9178DC57D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="simonaubert_0-1611173337340.png" alt="simonaubert_0-1611173337340.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Really ? &lt;EM&gt;Why do I have the value 3?&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;Well, let's have an aggregation now :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="simonaubert_2-1611173565848.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47520i4D3FEDBFEFB428E2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="simonaubert_2-1611173565848.png" alt="simonaubert_2-1611173565848.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Ok, this time, it's what I expected.&lt;BR /&gt;&lt;BR /&gt;I will now make this game a little harder&amp;nbsp; : what if the two tales have the exact same field name?&lt;/P&gt;&lt;LI-CODE lang="c"&gt;TABLEA:
LOAD * Inline
[FIELD_A, FIELD_B, FIELD_C
VALUEA1,VALUEB1,100
VALUEA2,VALUEB2,200]
;

loosen table TABLEA;
NoConcatenate
TABLEB:
LOAD * Inline
[FIELD_A, FIELD_B, FIELD_C
VALUEA1,VALUEB1,100
VALUEA3,VALUEB2,200]
;
loosen table TABLEB;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="simonaubert_3-1611173710431.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47521i16811DD624D533E8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="simonaubert_3-1611173710431.png" alt="simonaubert_3-1611173710431.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Same result :&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="simonaubert_5-1611173839322.png" style="width: 739px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47523i8CA2F6F2038A51C7/image-dimensions/739x226?v=v2" width="739" height="226" role="button" title="simonaubert_5-1611173839322.png" alt="simonaubert_5-1611173839322.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;And finally... what if I want the value of TableB ?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="simonaubert_6-1611173925898.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47524i588F9A690B5A304D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="simonaubert_6-1611173925898.png" alt="simonaubert_6-1611173925898.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="simonaubert_7-1611173988946.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47525iAF37F0268132CDED/image-size/medium?v=v2&amp;amp;px=400" role="button" title="simonaubert_7-1611173988946.png" alt="simonaubert_7-1611173988946.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I' m unable to query the second table...&lt;BR /&gt;&lt;BR /&gt;But I may have misunderstood loosen for lost &lt;span class="lia-unicode-emoji" title=":clown_face:"&gt;🤡&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Well, finally, the idea is simply to have a naturel management of loosen table, a real independancy and the ability to query all the data.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 437px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/47526iF740E6F9CC2FB8E9/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;(sorry for the meme, it's my way to relax)&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Simon&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2021 20:25:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idi-p/1776107</guid>
      <dc:creator>simonaubert</dc:creator>
      <dc:date>2021-01-20T20:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Real Loosen Tables</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/1777912#M4849</link>
      <description>&lt;P&gt;This looks like a tough one!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 22:11:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/1777912#M4849</guid>
      <dc:creator>Meghann_MacDonald</dc:creator>
      <dc:date>2021-01-27T22:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Real Loosen Tables</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/1777917#M4851</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/99692"&gt;@Meghann_MacDonald&lt;/a&gt;&amp;nbsp; Probably not the easiest idea I posted but the behaviour today... who does understand the logic and use it?&lt;BR /&gt;&lt;BR /&gt;At Tableau, for the new "relation" feature, they add a layer of modelisation, I guess something like that would make it for the loosen table?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jan 2021 22:32:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/1777917#M4851</guid>
      <dc:creator>simonaubert</dc:creator>
      <dc:date>2021-01-27T22:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Real Loosen Tables</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/1784216#M5136</link>
      <description>&lt;P&gt;I agree Meghann&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2021 15:01:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/1784216#M5136</guid>
      <dc:creator>Olivier_W</dc:creator>
      <dc:date>2021-02-19T15:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Real Loosen Tables - Status changed to: Open - Collecting Feedback</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2013710#M11101</link>
      <description />
      <pubDate>Wed, 07 Dec 2022 12:08:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2013710#M11101</guid>
      <dc:creator>Ian_Crosland</dc:creator>
      <dc:date>2022-12-07T12:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Real Loosen Tables</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2061986#M12671</link>
      <description>&lt;P&gt;Your solution is basically what Qualify does, right?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I too would like to have Joins like in SQL.&lt;BR /&gt;Right now, Tables are joined by Fieldnames.&lt;/P&gt;
&lt;P&gt;But SQL Joins are MUCH better.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 11:17:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2061986#M12671</guid>
      <dc:creator>fbar</dc:creator>
      <dc:date>2023-04-19T11:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Real Loosen Tables</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2062008#M12672</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/129944"&gt;@fbar&lt;/a&gt;&amp;nbsp; Hello. More than a solution, it's an idea request (and you can vote for &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&amp;nbsp; ). qualify would add a prefix to the field name and I don't want that prefix.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Simon&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 11:53:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2062008#M12672</guid>
      <dc:creator>simonaubert</dc:creator>
      <dc:date>2023-04-19T11:53:28Z</dc:date>
    </item>
    <item>
      <title>From now on, please track this idea from the Ideation por...</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2101184#M14428</link>
      <description>&lt;P&gt;From now on, please track this idea from the Ideation portal.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A title="Link to new idea" href="https://ideation.qlik.com/app/#/case/275347" target="_blank" rel="noopener"&gt;Link to new idea&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Meghann&lt;/P&gt;&lt;P data-unlink="true"&gt;&lt;EM&gt;NOTE: Upon clicking this link 2 tabs may open - please feel free to close the one with a login page. If you &lt;STRONG&gt;only&lt;/STRONG&gt; see 1 tab with the login page, please try clicking this link first: &lt;STRONG&gt;&lt;A title="Authenticate me!" href="#" target="_blank" rel="noopener"&gt;Authenticate me!&lt;/A&gt;&lt;/STRONG&gt;&amp;nbsp;t&lt;/EM&gt;&lt;EM&gt;hen try the link above again. Ensure pop-up blocker is off.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 16:14:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2101184#M14428</guid>
      <dc:creator>Meghann_MacDonald</dc:creator>
      <dc:date>2023-08-02T16:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Real Loosen Tables - Status changed to: Closed - Archived</title>
      <link>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2101185#M14429</link>
      <description />
      <pubDate>Wed, 02 Aug 2023 16:14:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Suggest-an-Idea/Real-Loosen-Tables/idc-p/2101185#M14429</guid>
      <dc:creator>Ideation</dc:creator>
      <dc:date>2023-08-02T16:14:43Z</dc:date>
    </item>
  </channel>
</rss>

