<?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 entries in source data cause null results in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287947#M403099</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My application has a function to display and report on incidents, and I am having an issue where there are multiple incidents reported in a single booking. The chart shows &lt;STRONG&gt;&lt;EM&gt;null&lt;/EM&gt;&lt;/STRONG&gt; results where there are two or more options to choose from&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE[&lt;/P&gt;&lt;P&gt;ID, TECHNOLOGY, SEVERITY&lt;/P&gt;&lt;P&gt;12345, Video, Minimal&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;55555, Audio, Minimal&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //incident one, microphone battery died&lt;/P&gt;&lt;P&gt;55555, Audio, Moderate&amp;nbsp;&amp;nbsp;&amp;nbsp; //incident two, audio system crashed&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I build a chart with ID as the dimension and TECHNOLOGY&amp;nbsp; and SEVERITY as the expressions, the result I get looks like this:&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="34" style="border: 1px solid rgb(0, 0, 0); border-image: none; width: 246px; height: 36px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;ID&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;TECHNOLOGY&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;SEVERITY&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12345&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Video&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Minimal&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;55555&lt;/TD&gt;&lt;TD&gt;Audio&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;55555&lt;/TD&gt;&lt;TD&gt;Audio&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;I have to note that my simplified example here will not actually display the two 55555 entries. I solved that problem through a more complicated process which would make this question a little muddy. (In the load, I used an IF statement to determine if my data falls in this category and create a flag. The actual first dimension is the flag, and it is hidden and has &lt;EM&gt;&lt;STRONG&gt;null&lt;/STRONG&gt;&lt;/EM&gt; results ignored. The result looks like above)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because TECHNOLOGY is the same for both incidents in ID 55555, the table has no problem returning the value "Audio". But when I ask for the SEVERITY associated with ID 55555, the result is &lt;EM&gt;&lt;STRONG&gt;null&lt;/STRONG&gt;&lt;/EM&gt; because it doesn't know whether to return "Minimal" or "Moderate". Every single-incident entry displays properly, and the issue only comes in when there are more than one value to choose from in the association.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result I am looking for would look like this:&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="99" style="border: 1px solid rgb(0, 0, 0); border-image: none; width: 249px; height: 98px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;ID&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;TECHNOLOGY&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;SEVERITY&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12345&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Video&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Minimal&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;55555&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Audio&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Minimal&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;55555&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Audio&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Moderate&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the ability to display the first incident of an ID on the first line and the second on a second line with all related data. Which should appear first and which should appear second would be based on load order from the original source data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd appreciate any help you could offer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Mar 2017 15:10:56 GMT</pubDate>
    <dc:creator>jason_nicholas</dc:creator>
    <dc:date>2017-03-27T15:10:56Z</dc:date>
    <item>
      <title>multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287947#M403099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My application has a function to display and report on incidents, and I am having an issue where there are multiple incidents reported in a single booking. The chart shows &lt;STRONG&gt;&lt;EM&gt;null&lt;/EM&gt;&lt;/STRONG&gt; results where there are two or more options to choose from&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE[&lt;/P&gt;&lt;P&gt;ID, TECHNOLOGY, SEVERITY&lt;/P&gt;&lt;P&gt;12345, Video, Minimal&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;55555, Audio, Minimal&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //incident one, microphone battery died&lt;/P&gt;&lt;P&gt;55555, Audio, Moderate&amp;nbsp;&amp;nbsp;&amp;nbsp; //incident two, audio system crashed&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I build a chart with ID as the dimension and TECHNOLOGY&amp;nbsp; and SEVERITY as the expressions, the result I get looks like this:&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="34" style="border: 1px solid rgb(0, 0, 0); border-image: none; width: 246px; height: 36px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;ID&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;TECHNOLOGY&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;SEVERITY&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12345&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Video&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Minimal&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;55555&lt;/TD&gt;&lt;TD&gt;Audio&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;55555&lt;/TD&gt;&lt;TD&gt;Audio&lt;/TD&gt;&lt;TD&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;I have to note that my simplified example here will not actually display the two 55555 entries. I solved that problem through a more complicated process which would make this question a little muddy. (In the load, I used an IF statement to determine if my data falls in this category and create a flag. The actual first dimension is the flag, and it is hidden and has &lt;EM&gt;&lt;STRONG&gt;null&lt;/STRONG&gt;&lt;/EM&gt; results ignored. The result looks like above)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because TECHNOLOGY is the same for both incidents in ID 55555, the table has no problem returning the value "Audio". But when I ask for the SEVERITY associated with ID 55555, the result is &lt;EM&gt;&lt;STRONG&gt;null&lt;/STRONG&gt;&lt;/EM&gt; because it doesn't know whether to return "Minimal" or "Moderate". Every single-incident entry displays properly, and the issue only comes in when there are more than one value to choose from in the association.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result I am looking for would look like this:&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="99" style="border: 1px solid rgb(0, 0, 0); border-image: none; width: 249px; height: 98px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;ID&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;TECHNOLOGY&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;SEVERITY&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;12345&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Video&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Minimal&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;55555&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Audio&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Minimal&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;55555&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Audio&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Moderate&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the ability to display the first incident of an ID on the first line and the second on a second line with all related data. Which should appear first and which should appear second would be based on load order from the original source data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd appreciate any help you could offer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 15:10:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287947#M403099</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2017-03-27T15:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287948#M403100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be create a unique identifier in your script and add it as a dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TECHNOLOGY,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SEVERITY,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RowNo() as UNIQUE_KEY&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM ....;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then add &lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;UNIQUE_KEY&lt;/STRONG&gt;&lt;/SPAN&gt; as a dimension. If this is a straight table, it can be hidden from the presentation tab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 15:17:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287948#M403100</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-27T15:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287949#M403101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RowNo() generates 0 on every line. I've encountered that before, and I don't understand how it happens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 15:50:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287949#M403101</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2017-03-27T15:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287950#M403102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a preceding Load on top of this? May be try with RecNo() then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD ID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TECHNOLOGY,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SEVERITY,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;RecNo()&lt;/SPAN&gt; as UNIQUE_KEY&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM ....;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 15:51:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287950#M403102</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-27T15:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287951#M403103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the attached image and qvw file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/157744_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 15:53:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287951#M403103</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-27T15:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287952#M403104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should use SEVERITY as dimension!&lt;/P&gt;&lt;P&gt;(This is the way QlikView works.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 16:11:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287952#M403104</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-27T16:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287953#M403105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This doesn't generate the correct result. When Severity is the dimension, it skips the Technology data. Where Technology is the dimension, it skips Severity. In fact, there is a third field in this grouping (source) which I left out of my explanation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 17:31:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287953#M403105</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2017-03-27T17:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287954#M403106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;???:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then set Severity and Technology as dimensions...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and don't supress zero values within the chart.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/157749_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 17:38:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287954#M403106</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-27T17:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287955#M403107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;... what you call skipping is called only() &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Have a look here: &lt;A href="https://community.qlik.com/docs/DOC-8146"&gt;How to use - Only()&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 17:42:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287955#M403107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-27T17:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287956#M403108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I may have simplified my explanation too much, because your solution works here but doesn't in my application. Let me back-track to see if I missed something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My source data loads the term "Incident' in a field called "Resource". There are other data in the same field, so my first effort is to break out the Incident data. Whether the "Resource" is "Incident" or something else, the follow-on data is delivered in a field called "Selection". This is the reason for the temp fields and the WHERE statement in the Resident Load.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Event_Reference:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Booking ID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Resource&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[RefResource Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Selection&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[RefSelection Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; [..\DataSources\GMS Qlikview Event Reference.xls] &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I follow up with this resident load, augmented by preceding loads. All of these steps pull the key data out of "Resource" and "Selection" and creates tables I can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD &lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;*,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MATCH&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Selection]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Minimal','Moderate','Severe'), &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Selection]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Severity Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MATCH&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Selection]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Audio', 'Video', 'Presentation'),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[ Incident Selection]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Tech Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; ;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MATCH&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Selection]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Technician Error','Technology Error','User Error'),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Selection]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Source Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;Incidents:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Booking ID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[RefResource Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Incident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&amp;nbsp; //This puts the term "Incident' in every cell, under the field header "Incident". Should be a 1,0 flag, but haven't cleaned it up yet&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[RefSelection Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Selection]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Event Notes]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Notes]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RecNo&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;() &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Key]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RESIDENT&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Event_Reference &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;WHERE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[RefResource Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = 'Incident'; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;This results in an internal table where each needed expression (Source, Technology, Severity) generates its own line. Where an incident has all three data points, there are three lines. If an item was skipped in the data entry, it has 2 lines. If, as in my original issue, someone adds in an additional Technology (for example) there is an additional line item added.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;I follow this up by splitting Severity, Technology and Source into their own tables with resident loads:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;Incident_Source:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Booking ID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Source Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Source]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Key]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Incidents&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Where&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Source Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;&amp;gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;();&lt;BR /&gt; &lt;BR /&gt; Incident_Technology:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Booking ID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Tech Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Affected Technology]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Key]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Incidents&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Where&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Tech Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;&amp;gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;();&lt;BR /&gt; &lt;BR /&gt; Incident_Severity:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Booking ID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Severity Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Severity]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Incident Key]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Incidents&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Where&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Severity Temp]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;&amp;gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(); &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Now I have three separate tables to reference, with no gaps in data. By loading the RecNo in my Incidents table and then recalling it to each detail table, my chart adds every data point, but on its own line. Without the RecNo dimension, I get the result shown above. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 18:32:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287956#M403108</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2017-03-27T18:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287957#M403109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you show a snapshot of what happens when you add RecNo()?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 18:39:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287957#M403109</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-27T18:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287958#M403110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By adding the three dimensions (my example is only two, but there are three) as you suggested, and using the ID as the expression, I get:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/157747_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 18:41:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287958#M403110</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2017-03-27T18:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287959#M403111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/157761_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 18:42:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287959#M403111</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2017-03-27T18:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287960#M403112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I still think you haven't understood the difference between dimension and expression yet ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at my sample:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="157763" alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/157763_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 18:47:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287960#M403112</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-27T18:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287961#M403113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; LOAD *,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;if(MATCH([Incident Selection],'Minimal','Moderate','Severe'), [Incident Selection]) as [Severity Temp]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;if(MATCH([Incident Selection],'Audio', 'Video', 'Presentation'),[ Incident Selection]) as [Tech Temp]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;if(MATCH([Incident Selection],'Technician Error','Technology Error','User Error'),[Incident Selection]) as [Source Temp]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Incidents:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD [Booking ID],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[RefResource Temp] as Incident,&amp;nbsp; //This puts the term "Incident' in every cell, under the field header "Incident". Should be a 1,0 flag, but haven't cleaned it up yet&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[RefSelection Temp] as [Incident Selection],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[Event Notes] as [Incident Notes],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="text-decoration: line-through;"&gt;&lt;SPAN style="color: #ff0000; text-decoration: line-through;"&gt;RecNo() as [Incident Key]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;RESIDENT Event_Reference WHERE [RefResource Temp] = 'Incident';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Incident_Source:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD [Booking ID],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[Source Temp] as [Incident Source],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="color: #ff0000;"&gt;AutoNumber([Booking ID]) as [Incident Key]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Incidents&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Where [Source Temp]&amp;lt;&amp;gt; null();&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Incident_Technology:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD [Booking ID],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[Tech Temp] as [Affected Technology],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="color: #ff0000;"&gt;AutoNumber([Booking ID]) as [Incident Key]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Resident Incidents&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Where [Tech Temp]&amp;lt;&amp;gt; null();&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Incident_Severity:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD [Booking ID],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[Severity Temp] as [Incident Severity],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="color: #ff0000;"&gt;AutoNumber([Booking ID]) as [Incident Key]&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Resident Incidents&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Where [Severity Temp]&amp;lt;&amp;gt; null();&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 18:50:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287961#M403113</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-27T18:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287962#M403114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This gives me a similar result to other methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note Booking ID 22627001. this has two incidents, with different severity and technology, but same source&lt;/P&gt;&lt;P&gt;For reference, Booking ID 23071679 is actually missing the incident source data, and the others are all complete and single entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/157767_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 19:16:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287962#M403114</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2017-03-27T19:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287963#M403115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;don't use any expression, have a look at my sample added above please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 19:18:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287963#M403115</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-27T19:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287964#M403116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give this a try now &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; LOAD *,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;if(MATCH([Incident Selection],'Minimal','Moderate','Severe'), [Incident Selection]) as [Severity Temp]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;if(MATCH([Incident Selection],'Audio', 'Video', 'Presentation'),[ Incident Selection]) as [Tech Temp]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;if(MATCH([Incident Selection],'Technician Error','Technology Error','User Error'),[Incident Selection]) as [Source Temp]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Incidents:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD [Booking ID],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[RefResource Temp] as Incident,&amp;nbsp; //This puts the term "Incident' in every cell, under the field header "Incident". Should be a 1,0 flag, but haven't cleaned it up yet&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[RefSelection Temp] as [Incident Selection],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[Event Notes] as [Incident Notes],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;RecNo() as [Incident Key]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;RESIDENT Event_Reference WHERE [RefResource Temp] = 'Incident';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Incident_Source:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD [Booking ID],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[Source Temp] as [Incident Source],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;AutoNumber(&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;RowNo(),&lt;/SPAN&gt; &lt;/STRONG&gt;[Booking ID]) as [Incident Key]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Incidents&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Where [Source Temp]&amp;lt;&amp;gt; null();&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Incident_Technology:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD [Booking ID],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[Tech Temp] as [Affected Technology],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;AutoNumber(&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #ff0000;"&gt;RowNo(),&lt;/SPAN&gt; &lt;/STRONG&gt;[Booking ID]) as [Incident Key]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Resident Incidents&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Where [Tech Temp]&amp;lt;&amp;gt; null();&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Incident_Severity:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD [Booking ID],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[Severity Temp] as [Incident Severity],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;AutoNumber(&lt;SPAN style="color: #ff0000;"&gt;RowNo(),&lt;/SPAN&gt; [Booking ID]) as [Incident Key]&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Resident Incidents&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Where [Severity Temp]&amp;lt;&amp;gt; null();&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 19:20:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287964#M403116</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-27T19:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287965#M403117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having limited success here, but I think there is a solution in your suggestion. I am going to set it aside for the night, and try again tomorrow. I will update with results/further questions/closed thread once I have completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 19:32:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287965#M403117</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2017-03-27T19:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: multiple entries in source data cause null results</title>
      <link>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287966#M403118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This method only works if I don't add any other data into the chart. As soon as I start fleshing out the visualization, I end up with the null values once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table needs to&amp;nbsp; show additional dimensions, such as [Month], [Building], [Details], and a hidden column for [Current Year Flag] to limit the results to 2017. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Mar 2017 12:10:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/multiple-entries-in-source-data-cause-null-results/m-p/1287966#M403118</guid>
      <dc:creator>jason_nicholas</dc:creator>
      <dc:date>2017-03-28T12:10:03Z</dc:date>
    </item>
  </channel>
</rss>

