<?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: How do you assign values to nulls ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561053#M551050</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Al On,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check out the example app (with your data) showing a simple solution with applymap().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HtH&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Dec 2013 18:52:52 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-12-11T18:52:52Z</dc:date>
    <item>
      <title>How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561018#M551015</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 have data for many thousands of leads drawn into QV from Salesforce. For some of the leads, certain information is missing and the fields in salesforce have null values (literally, no value. a blank cell). For example, for the leads' marketing sources we have PPC, Media, WOM, Tradeshow, etc. and there are also many leads with just no value whatsoever.&lt;/P&gt;&lt;P&gt;When I create a chart in QV (for example a stacked bar chart) to show the number of leads generated per month from the different marketing source (the dimension are a time dimension and the marketing source, where the month of lead generation is the horizontal axis), the null leads do show in the stacked bar, but do not show in the legend whatsoever.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to map the marketing source and assign "Unknown" to nulls (just created an excel file with the name of the marketing source on the left column and the name I want to see in QV on the column next to it), but that doesn't work. So, I'm turning to you guys. Any idea how to make it happen and have the null values appear in the legend as "Unknown" ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 10:05:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561018#M551015</guid>
      <dc:creator />
      <dc:date>2013-12-11T10:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561019#M551016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as far as I know, the handling of NULL values in QV dos not always give the expected results when the Isnull function is used. So I would try using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Len(Field)=0 &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt; Len(Trim(Field))=0 &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to check if avalue is null and the assign it the 'Unknown' value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;if(Len(Trim(Field))=0,'Unknown',Field) as...&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 10:09:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561019#M551016</guid>
      <dc:creator>salto</dc:creator>
      <dc:date>2013-12-11T10:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561020#M551017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While loading data try to assign some value to null values s&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;if(isnull(field_name),'Unknown',field_name) as field_name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from ............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will healp you aut.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 10:09:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561020#M551017</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-11T10:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561021#M551018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Al On,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to use this within a LOAD in script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD ...&lt;/P&gt;&lt;P&gt;if ( Len(Input) &amp;gt; 0, Input, ' -unknown- ')) AS Input,&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;- It is better to use Len() than check if a field is empty or null. This works not always properly.&lt;/P&gt;&lt;P&gt;- May be you want to use "Len(Trim(Input))" as a stronger version&lt;/P&gt;&lt;P&gt;- start your Defaultvalue with a blank; then it appears on top in Listboxes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 10:15:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561021#M551018</guid>
      <dc:creator />
      <dc:date>2013-12-11T10:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561022#M551019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Al On&lt;/P&gt;&lt;P&gt;You can simply try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(Len(Column) &amp;gt; 0,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Column&lt;/SPAN&gt;) as Column Name,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 10:52:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561022#M551019</guid>
      <dc:creator>qlikpahadi07</dc:creator>
      <dc:date>2013-12-11T10:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561023#M551020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, thanks for answering.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would you modify the script to include that? Keep in mind I still want to use the conversion table in excel (I use it to fix spelling mistakes, merge similar categories, etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Lead Types Conversion Map]:&amp;nbsp; //AL 11/12/13&lt;/P&gt;&lt;P&gt;Mapping&lt;/P&gt;&lt;P&gt;LOAD [Lead Type], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Should Be]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\1_Resources\Lead_Types_Conversion_Table.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map [Lead Type] using [Lead Types Conversion Map];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 11:00:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561023#M551020</guid>
      <dc:creator />
      <dc:date>2013-12-11T11:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561024#M551021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for answering &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;Please see my comment here:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/435002#435002"&gt;http://community.qlik.com/message/435002#435002&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 11:01:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561024#M551021</guid>
      <dc:creator />
      <dc:date>2013-12-11T11:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561025#M551022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for answering &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;Please see my comment here:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/435002#435002"&gt;http://community.qlik.com/message/435002#435002&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 11:01:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561025#M551022</guid>
      <dc:creator />
      <dc:date>2013-12-11T11:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561026#M551023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in mapping load only , you can use conditions to check with the null or length conditions .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mapping&lt;/P&gt;&lt;P&gt;LOAD [Lead Type],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;if(isnull( [Should Be]),'Unknown', [Should Be]) as&amp;nbsp; [Should Be]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\1_Resources\Lead_Types_Conversion_Table.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mapping&lt;/P&gt;&lt;P&gt;LOAD [Lead Type],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;if(len(trim( [Should Be]))=0,'Unknown', [Should Be]) as&amp;nbsp; [Should Be]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\1_Resources\Lead_Types_Conversion_Table.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 11:07:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561026#M551023</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-11T11:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561027#M551024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;try this:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;[Lead Types Conversion Map]:&amp;nbsp; //AL 11/12/13&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;Mapping&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Len(Trim(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Lead Type]&lt;/SPAN&gt;))=0,'Unknown',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Lead Type]&lt;/SPAN&gt;) as [Lead Type],&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Should Be]&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;[..\1_Resources\Lead_Types_Conversion_Table.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;(ooxml, embedded labels, table is Sheet1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt; Map [Lead Type] using [Lead Types Conversion Map];&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 11:10:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561027#M551024</guid>
      <dc:creator>salto</dc:creator>
      <dc:date>2013-12-11T11:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561028#M551025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;The bar chart still shows them as blanks, and they don't appear in the legend. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 12:11:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561028#M551025</guid>
      <dc:creator />
      <dc:date>2013-12-11T12:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561029#M551026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried my way..........????????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 12:16:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561029#M551026</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-11T12:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561030#M551027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thinks its not null values, its data mismatch when link with two tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you check the data model, what are the dimension and expression using, both dimension and expression fields occur in same table?, if same table, then the above suggestion will work definitely. &lt;/P&gt;&lt;P&gt;If it occurs in different table, then data mismatch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can&amp;nbsp; you provide a sample ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 12:19:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561030#M551027</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-12-11T12:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561031#M551028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;the data is null in the origin (salesforce).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 12:25:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561031#M551028</guid>
      <dc:creator />
      <dc:date>2013-12-11T12:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561032#M551029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, same result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 12:37:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561032#M551029</guid>
      <dc:creator />
      <dc:date>2013-12-11T12:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561033#M551030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you provide a sample file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 12:41:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561033#M551030</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-12-11T12:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561034#M551031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;the data is confidential I'm afraid. I can generate an excel file with dummy data if that helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 12:44:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561034#M551031</guid>
      <dc:creator />
      <dc:date>2013-12-11T12:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561035#M551032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 12:48:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561035#M551032</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-12-11T12:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561036#M551033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mapping&lt;/P&gt;&lt;P&gt;LOAD [Lead Type],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;if(len(trim( [Should Be]))=0 or isnull(&lt;SPAN style="color: #ff0000;"&gt;[Should Be]&lt;/SPAN&gt;) ,'Unknown', [Should Be]) as&amp;nbsp; [Should Be]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\1_Resources\Lead_Types_Conversion_Table.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;anant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 12:49:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561036#M551033</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-11T12:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How do you assign values to nulls ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561037#M551034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please see the attached. thanks! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Dec 2013 13:03:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-you-assign-values-to-nulls/m-p/561037#M551034</guid>
      <dc:creator />
      <dc:date>2013-12-11T13:03:13Z</dc:date>
    </item>
  </channel>
</rss>

