<?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: link multiple columns to one table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/link-multiple-columns-to-one-table/m-p/1830336#M68432</link>
    <description>&lt;P&gt;You will want to move the *staffingId values from the Sample table into a link table. That will give you the Many-to-one relationship between Sample and LabStaffing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LinkTable:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD SampleID,&amp;nbsp;&lt;SPAN&gt;RequestingLabstaffingID,&amp;nbsp;RequestingLabstaffingID as LabstaffingID Resident Sample;&lt;BR /&gt;LOAD SampleID, RegisteredbyLabstaffingID, RegisteredbyLabstaffingID as LabstaffingID Resident Sample;&lt;BR /&gt;LOAD SampleID, CutbyLabstaffID, CutbyLabstaffID as LabstaffingID Resident Sample;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Drop Fields&amp;nbsp;RequestingLabstaffingID,&amp;nbsp;RegisteredbyLabstaffingID,&amp;nbsp;CutbyLabstaffID From Sample;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 21 Aug 2021 22:16:55 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2021-08-21T22:16:55Z</dc:date>
    <item>
      <title>link multiple columns to one table</title>
      <link>https://community.qlik.com/t5/App-Development/link-multiple-columns-to-one-table/m-p/1830334#M68430</link>
      <description>&lt;P&gt;Hi everyone, i have a pressing issue I can't find the solution for.&lt;/P&gt;&lt;P&gt;I have two tables;&lt;/P&gt;&lt;P&gt;Table Labstaffing;&lt;/P&gt;&lt;P&gt;- LabstaffingID&lt;/P&gt;&lt;P&gt;- Fullname&lt;/P&gt;&lt;P&gt;Table Sample;&lt;/P&gt;&lt;P&gt;- SampleID&lt;/P&gt;&lt;P&gt;- RequestingLabstaffingID&lt;/P&gt;&lt;P&gt;- RegisteredbyLabstaffingID&lt;/P&gt;&lt;P&gt;- CutbyLabstaffID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to link the variations of labstaffingID from table "Sample" (requesting, registered &amp;amp; cut) to the LabstaffingID from&lt;/P&gt;&lt;P&gt;the table "Labstaffing". This way I can fill in the "fullname" for these ID's, so I know who performed these actions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone know how to do this?&lt;/P&gt;</description>
      <pubDate>Sat, 21 Aug 2021 21:14:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/link-multiple-columns-to-one-table/m-p/1830334#M68430</guid>
      <dc:creator>QuentinZNA</dc:creator>
      <dc:date>2021-08-21T21:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: link multiple columns to one table</title>
      <link>https://community.qlik.com/t5/App-Development/link-multiple-columns-to-one-table/m-p/1830335#M68431</link>
      <description>&lt;P&gt;Please try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sample_Output:
NoConcatenate
LOAD
 SampleID,
 RequestingLabstaffingID,
 RegisteredbyLabstaffingID,
 CutbyLabstaffID
Resident Sample;

Left Join(Sample)
LOAD
 LabstaffingID As RequestingLabstaffingID,
 Fullname
Resident Labstaffing;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Aug 2021 21:33:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/link-multiple-columns-to-one-table/m-p/1830335#M68431</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-08-21T21:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: link multiple columns to one table</title>
      <link>https://community.qlik.com/t5/App-Development/link-multiple-columns-to-one-table/m-p/1830336#M68432</link>
      <description>&lt;P&gt;You will want to move the *staffingId values from the Sample table into a link table. That will give you the Many-to-one relationship between Sample and LabStaffing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LinkTable:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD SampleID,&amp;nbsp;&lt;SPAN&gt;RequestingLabstaffingID,&amp;nbsp;RequestingLabstaffingID as LabstaffingID Resident Sample;&lt;BR /&gt;LOAD SampleID, RegisteredbyLabstaffingID, RegisteredbyLabstaffingID as LabstaffingID Resident Sample;&lt;BR /&gt;LOAD SampleID, CutbyLabstaffID, CutbyLabstaffID as LabstaffingID Resident Sample;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;Drop Fields&amp;nbsp;RequestingLabstaffingID,&amp;nbsp;RegisteredbyLabstaffingID,&amp;nbsp;CutbyLabstaffID From Sample;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Aug 2021 22:16:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/link-multiple-columns-to-one-table/m-p/1830336#M68432</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2021-08-21T22:16:55Z</dc:date>
    </item>
  </channel>
</rss>

