<?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 Recognizing null values in a Table File in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150752#M28719</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ah ic, that's a good idea. I'll give a value to null screen numbers, and then give orders with the null screen number a screen status of 'Not Validated' based on that value.&lt;/P&gt;&lt;P&gt;Thanks guys!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Jul 2009 01:33:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-07-31T01:33:04Z</dc:date>
    <item>
      <title>Recognizing null values in a Table File</title>
      <link>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150747#M28714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;I'm working with data that contains a set of Orders. Each Order has an Order ID, and a single Screen Status. What I want to do is then assign another value to different screen statuses called Advice Status. This is simple enough, and i've done it in an Excel file; two columns, screen status and advice status, with each relation mapped out.&lt;/P&gt;&lt;P&gt;This works well, however, there are some orders where the screen status is null. For this case I still want to assign the order with an Advice status of "Not Validated." I tried doing this with a row in the excel file that has a blank Screen Status, but qlikview won't import that row. Does anyone know how I can do this assignment? I was thinking if statements in the load to assign a value to orders with a null Screen Status, but I'm not sure how to do this.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2009 22:46:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150747#M28714</guid>
      <dc:creator />
      <dc:date>2009-07-30T22:46:09Z</dc:date>
    </item>
    <item>
      <title>Recognizing null values in a Table File</title>
      <link>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150748#M28715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i'm reading this correctly you just want to assign a value to a null field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull([FIELDNAME]) = -1), 'This field is null', FIELDNAME) as FIELDNAME&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2009 22:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150748#M28715</guid>
      <dc:creator />
      <dc:date>2009-07-30T22:58:46Z</dc:date>
    </item>
    <item>
      <title>Recognizing null values in a Table File</title>
      <link>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150749#M28716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rather than test for null as there are differences between the way 32bit and 64bit recognise it, its safer to do a length test like;&lt;/P&gt;&lt;P&gt;if(len([FIELDNAME]) = 0), 'This field is null', FIELDNAME) as FIELDNAME&lt;/P&gt;&lt;P&gt;if you also want to include a space filled column then use:&lt;/P&gt;&lt;P&gt;if(len(trim([FIELDNAME])) = 0), 'This field is null or spaces', FIELDNAME) as FIELDNAME&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2009 23:31:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150749#M28716</guid>
      <dc:creator />
      <dc:date>2009-07-30T23:31:50Z</dc:date>
    </item>
    <item>
      <title>Recognizing null values in a Table File</title>
      <link>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150750#M28717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my current syntax is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;LOAD [Screen Status] as [Original Screen Status],&lt;BR /&gt; [Advice Status] as [Original Advice Status]&lt;BR /&gt;FROM Screens.xls (biff, embedded labels, table is [Screen Advice Status$]);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;where does that if statement fit into this? What I want it to represent is, if the Screen Status is null, then assign a value of 'Not Validated' to Original Advice Status, otherwise give it Advice Status. Here is what I've edited in, but it still doesn't seem to work, the orders that have a null screen status are still displaying a null advice status&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;LOAD [Screen Status] as [Original Screen Status],&lt;BR /&gt; if(len(trim([Screen Status])) = 0, 'Not Validated', [Advice Status]) as [Original Advice Status]&lt;BR /&gt;FROM Screens.xls (biff, embedded labels, table is [Screen Advice Status$]);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 00:42:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150750#M28717</guid>
      <dc:creator />
      <dc:date>2009-07-31T00:42:20Z</dc:date>
    </item>
    <item>
      <title>Recognizing null values in a Table File</title>
      <link>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150751#M28718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need something similar in your Orders load - replace null (or missing) screen status for the Order with the text "Not Validated" or someting like that...&lt;/P&gt;&lt;P&gt;Oleg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 01:26:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150751#M28718</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-07-31T01:26:01Z</dc:date>
    </item>
    <item>
      <title>Recognizing null values in a Table File</title>
      <link>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150752#M28719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ah ic, that's a good idea. I'll give a value to null screen numbers, and then give orders with the null screen number a screen status of 'Not Validated' based on that value.&lt;/P&gt;&lt;P&gt;Thanks guys!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jul 2009 01:33:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Recognizing-null-values-in-a-Table-File/m-p/150752#M28719</guid>
      <dc:creator />
      <dc:date>2009-07-31T01:33:04Z</dc:date>
    </item>
  </channel>
</rss>

