<?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: Blank data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46860#M7817</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Serina -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where does this go in my script? I tried loading directly before my load statement and did not correct the situation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Evan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Jun 2018 19:02:20 GMT</pubDate>
    <dc:creator>evansabres</dc:creator>
    <dc:date>2018-06-01T19:02:20Z</dc:date>
    <item>
      <title>Blank data</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46856#M7813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table called &lt;/P&gt;&lt;P&gt;'FBData', which is from a data source called FBData.csv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The columns in the table include 'Likes' Shares' Comments'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an expression in a table that is =sum(likes + shares + comments)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes, these fields are blank in the data, causing the expression to return a value of 0 (zero). For example, likes=100, shares are blank and comments =50, the expression returns 0 due to the blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can this be fixed?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2018 18:43:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46856#M7813</guid>
      <dc:creator>evansabres</dc:creator>
      <dc:date>2018-06-01T18:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Blank data</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46857#M7814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Had marked this as correct as I thought I had a solution, I was wrong&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2018 18:56:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46857#M7814</guid>
      <dc:creator>evansabres</dc:creator>
      <dc:date>2018-06-01T18:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Blank data</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46858#M7815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Evan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the NullAsValue function when loading the data to replace all your Null values with 0. This shows you how: &lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptRegularStatements/NullAsValue.htm" title="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptRegularStatements/NullAsValue.htm"&gt;https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptRegularStatements/NullAsValu…&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that helps!&lt;/P&gt;&lt;P&gt;Serina&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;When applicable please mark the appropriate replies as CORRECT. This will help community members and Qlik Employees know which discussions have already been addressed and have a possible known solution. Please mark threads as HELPFUL if the provided solution is helpful to the problem, but does not necessarily solve the indicated problem. You can mark multiple threads as HELPFUL if you feel additional info is useful to others.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2018 18:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46858#M7815</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-01T18:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Blank data</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46859#M7816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In script before you load the table copy following two lines:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NullAsValue *;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET NullValue = 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;share,&lt;/P&gt;&lt;P&gt;likes,&lt;/P&gt;&lt;P&gt;comments&lt;/P&gt;&lt;P&gt;From Yourtable&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>Fri, 01 Jun 2018 19:01:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46859#M7816</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2018-06-01T19:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Blank data</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46860#M7817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Serina -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where does this go in my script? I tried loading directly before my load statement and did not correct the situation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Evan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2018 19:02:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46860#M7817</guid>
      <dc:creator>evansabres</dc:creator>
      <dc:date>2018-06-01T19:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Blank data</title>
      <link>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46861#M7818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you could try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15278899118712762 jive_text_macro" jivemacro_uid="_15278899118712762"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Sum(RangeSum(likes, shares, comments))&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jun 2018 21:51:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Blank-data/m-p/46861#M7818</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-06-01T21:51:58Z</dc:date>
    </item>
  </channel>
</rss>

