<?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 Making a null value into a real value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216828#M861124</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm stuck. How do I turn a null value into something like "Unlabeled" or "Backlog" when I load it from a table in my script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216828#M861124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm stuck. How do I turn a null value into something like "Unlabeled" or "Backlog" when I load it from a table in my script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216828#M861124</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216829#M861125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(Trim(FieldName)) = 0, 'Unlabeled', FieldName) as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 12:34:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216829#M861125</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-09T12:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216830#M861126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Following link maybe helpful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/73124"&gt;https://community.qlik.com/thread/73124&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 12:39:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216830#M861126</guid>
      <dc:creator>ajaysingh29</dc:creator>
      <dc:date>2017-01-09T12:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216831#M861127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Huh. That didn't work... When I look at the data in SQL it doesn't actually say NULL. Maybe it's an empty string or something. I put your code into a Load statement but it didn't work. It looks like it should have though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 13:33:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216831#M861127</guid>
      <dc:creator />
      <dc:date>2017-01-09T13:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216832#M861128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you check if there is any length here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Len(Trim(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FieldName&lt;/STRONG&gt;)) as Check1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ord(Len(Trim(FieldName)) as Check2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check1 will help you identify if there are any characters which are not spaces, but still not available to view. Check2 will tell you what that character is actually. Once you have this information, can you let us know what all values show up for Check2 for those rows where FieldName is null?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 13:37:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216832#M861128</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-09T13:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216833#M861129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(Len(Trim(FieldName)) = ' ', 'Unlabeled', FieldName) as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;here with in the single codes you can give space bar(just click '&amp;nbsp;&amp;nbsp; ')most of the databases if they didn't mention default value then that is a Space bar only.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if it is not successful you can ask DB team only.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 13:48:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216833#M861129</guid>
      <dc:creator>ramasaisaksoft</dc:creator>
      <dc:date>2017-01-09T13:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216834#M861130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is a space actually, not a null value. Your code still didn't work on it though... This is what I did&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Keep&lt;/P&gt;&lt;P&gt;Table5:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;[Application ID] as ITMSNumber,&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(Len(Trim([ITMS Type])) = ' ', 'Unlabeled', &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[ITMS Type]&lt;/STRONG&gt;) as &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[ITMS Type]&lt;/STRONG&gt;,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;[Application Status];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:01:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216834#M861130</guid>
      <dc:creator />
      <dc:date>2017-01-09T14:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216835#M861131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you check with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt; Ord(Len(Trim([ITMS Type])) as Check2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:03:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216835#M861131</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-09T14:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216836#M861132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick,&lt;/P&gt;&lt;P&gt;first thing first, like &lt;A href="https://community.qlik.com/qlik-users/171708"&gt;stalwar1&lt;/A&gt;‌ said, you need to take a look on to the type of data you'r looking at. If's a string saying NULL, then a simple replace is more than enough.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;REPLACE(FIELD, 'STRING TO REPLACE', 'NEW STRING')&lt;/LI&gt;&lt;LI&gt;REPLACE(FIELD, 'NULL', 'Backlog')&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If data, actually is a null, you can use the ISNULL function.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;IF(ISNULL(FIELD), TRUE CONDITION, FALSE CONDITION - Default null)&lt;/LI&gt;&lt;LI&gt;IF(ISNULL(FIELD, 'Backlog', FIELD)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice one!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:03:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216836#M861132</guid>
      <dc:creator />
      <dc:date>2017-01-09T14:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216837#M861133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It gave me a list with everything unlabeled and some numbers on the right side...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:15:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216837#M861133</guid>
      <dc:creator />
      <dc:date>2017-01-09T14:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216838#M861134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was almost certain that this would be the answer but it didn't work either. I tried this-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE([ITMS Type], ' ', 'Unlabeled'),&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:20:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216838#M861134</guid>
      <dc:creator />
      <dc:date>2017-01-09T14:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216839#M861135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nick,&lt;/P&gt;&lt;P&gt;don't worry, could you export the information (2 rows would be fine) to an .csv? A sample may clarify the issue and give you a proper solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:24:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216839#M861135</guid>
      <dc:creator />
      <dc:date>2017-01-09T14:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216840#M861136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: CourierNewPSMT;"&gt;NullAsValue A,B;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="mso-bidi-font-family: TimesNewRomanPSMT; color: #000000; font-size: 10pt; mso-ansi-language: EN-US; font-family: 'TimesNewRomanPSMT',serif;"&gt;Set NullValue = 'Unlabeled' ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 8pt;"&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: CourierNewPSMT;"&gt;Load A,B from x.csv;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;Or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: CourierNewPSMT;"&gt;NullAsValue *;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="mso-bidi-font-family: TimesNewRomanPSMT; color: #000000; font-size: 10pt; mso-ansi-language: EN-US; font-family: 'TimesNewRomanPSMT',serif;"&gt;Set NullValue = 'Backlog' ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0px 0px 8pt;"&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: CourierNewPSMT;"&gt;Load A,B from x.csv;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:27:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216840#M861136</guid>
      <dc:creator>girirajsinh</dc:creator>
      <dc:date>2017-01-09T14:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216841#M861137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what you mean, can you share a screenshot?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:42:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216841#M861137</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-09T14:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216842#M861138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope this helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:43:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216842#M861138</guid>
      <dc:creator />
      <dc:date>2017-01-09T14:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216843#M861139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick,&lt;/P&gt;&lt;P&gt;in the sample data you provided the following snippet gets the result you are mentioning:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;IF(LEN(TRIM(@1)) = 0, 'Unlabeled', @1) AS APP&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That solved the issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:48:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216843#M861139</guid>
      <dc:creator />
      <dc:date>2017-01-09T14:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216844#M861140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still didn't work. Maybe this screenshot will help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Keep&lt;/P&gt;&lt;P&gt;Table5:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;[Application ID] as ITMSNumber,&lt;/P&gt;&lt;P&gt;IF(LEN(TRIM([ITMS Type])) = 0, 'Unlabeled', [ITMS Type]) AS [ITMS Type],&lt;/P&gt;&lt;P&gt;[Application Status];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 15:01:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216844#M861140</guid>
      <dc:creator />
      <dc:date>2017-01-09T15:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216845#M861143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can I see the snippet in the query you are performing? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, can you select the null or empty value and create a text box with the code i provided?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 15:06:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216845#M861143</guid>
      <dc:creator />
      <dc:date>2017-01-09T15:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216846#M861145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I edited my reply. Please refer to that for the snippet of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The box looks like the picture that I attached. Nothing changed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 15:22:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216846#M861145</guid>
      <dc:creator />
      <dc:date>2017-01-09T15:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Making a null value into a real value</title>
      <link>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216847#M861148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nick, I know this might not be very straight forward, but can you just run this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Ord(Len(Trim([ITMS Type])) as Check2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then make a selection in your ITMS Type field to select the blank option. and then create a list box for Check2 and send us a snapshot of that? This would help us understand what those blanks actually are.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 15:25:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Making-a-null-value-into-a-real-value/m-p/1216847#M861148</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-01-09T15:25:20Z</dc:date>
    </item>
  </channel>
</rss>

