<?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 Force blank cells to be missing in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294314#M1201221</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since there is only one row of spaces, then all of your blank fields share the same value. You should be able to show only "null" Tax IDs in a table by selecting that blank line in the list box.&lt;/P&gt;&lt;P&gt;Looking at your Excel file, the blank Tax ID fields actually contain an empty string. There are no spaces in that field. Try this Set Analysis:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Count({&amp;lt;Tax ID={''}&amp;gt;} Tax ID)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;Those are single quotes with NO space in between. &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;It's kind of hard to troubleshoot without being able to see how the data is imported into QlikView. When I load your Excel file into QlikView (using the Wizard, no modifications), I get the blank Tax ID values as Nulls. I can tell by making a chart and changing the Null symbol from - to N.&lt;/P&gt;&lt;P&gt;Have your tried (in your load):&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;If(IsNull([Taxonomy Code]), '-', [Taxonomy Code]) As Taxonomy Code&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;If you do that, you replace the Null values with the dash symbol and it should be easy to pull those values out using selections or Set Analysis. &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Dec 2010 22:12:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-12-13T22:12:26Z</dc:date>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294306#M1201213</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 haven't seen this type of behavior since I've started working with Qlikview. I have a field that's being stubborn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a tax ID field that's on file for our various customers. The tax IDs are held in a separate table from the customer information table. Using a customer ID to join the two tables together, I've matched the Tax ID up with the customer.&lt;/P&gt;&lt;P&gt;The problem is, not all of our customers have a tax ID listed. When the two tables join, the customers without a tax ID aren't marked as missing - it's a blank field, presumably with " " in the cell. This is an issue because I'm trying to count the number of missing tax IDs. Without it marked as missing, the " " is still counted as 1.&lt;/P&gt;&lt;P&gt;I've tried doing a few things in the script for the initial load of the table (before the join):&lt;/P&gt;&lt;P&gt;num#([Tax ID]) as [Tax ID]&lt;/P&gt;&lt;P&gt;trim([Tax ID]) as [Tax ID]&lt;/P&gt;&lt;P&gt;text(trim([Tax ID]) as [Tax ID]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;None of these seem to have any effect. I'm not quite sure what's going on in order to fix it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 16:57:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294306#M1201213</guid>
      <dc:creator>kkorynta</dc:creator>
      <dc:date>2010-12-13T16:57:57Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294307#M1201214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If Tax ID is loading as Null, you may try using Set Analysis:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Count({$-&amp;lt;Tax ID={'*'}&amp;gt;} Tax ID)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;If Tax ID really is just a blank character, then it should be easier using Set Analysis:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Count({&amp;lt;Tax ID={' '}&amp;gt;} Tax ID)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;There is a space between the single quotes there. It should give you the count of Tax IDs where Tax ID is a single space character. &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 17:16:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294307#M1201214</guid>
      <dc:creator />
      <dc:date>2010-12-13T17:16:47Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294308#M1201215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did give that a shot with no luck. The problem is, there's no way to tell how many spaces it's using.&lt;/P&gt;&lt;P&gt;And what's odd, is if I export it into excel, I click the 'blank cell' and look at the contents and there's nothing in there. But it still has a count of one. Now when I double click on it, the cell finally recognizes there's nothing in it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 17:33:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294308#M1201215</guid>
      <dc:creator>kkorynta</dc:creator>
      <dc:date>2010-12-13T17:33:23Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294309#M1201216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the export to give you an idea of what I'm talking about.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 17:40:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294309#M1201216</guid>
      <dc:creator>kkorynta</dc:creator>
      <dc:date>2010-12-13T17:40:46Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294310#M1201217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not just trim() the tax id field on load? Then it would be null as expected.&lt;/P&gt;&lt;P&gt;Another idea is left join the tax ids into the customer table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 19:11:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294310#M1201217</guid>
      <dc:creator />
      <dc:date>2010-12-13T19:11:09Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294311#M1201218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did both of those. That was the first thing I said in this post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 19:20:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294311#M1201218</guid>
      <dc:creator>kkorynta</dc:creator>
      <dc:date>2010-12-13T19:20:50Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294312#M1201219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry, I'm stuck with an old version of Excel. Could you post that as xls or csv?&lt;/P&gt;&lt;P&gt;Have you looked at a list box for Tax ID? Do you have a bunch of blank lines at the top? That would indicate that your field is storing spaces and varying numbers of spaces.&lt;/P&gt;&lt;P&gt;It seems odd that the data is coming in this way. Where is the original source of the data? Database, Excel? If the data really contains a differing number of spaces instead of single blanks or nulls, then it is probably a good idea to clean it up either in the original source or during your load into QlikView.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 20:48:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294312#M1201219</guid>
      <dc:creator />
      <dc:date>2010-12-13T20:48:21Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294313#M1201220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do have a list box open. There's only one row of spaces. I know there's something fishy going on about the dataset overall because when i try to do a len([first name]), the names are different, but the length for all of them is 10, even after trimming them.&lt;/P&gt;&lt;P&gt;The original source was a query to our db server and saved in a .txt file. When I exported this excel file, i intentionally exported only the "blank" NPI to show how blank cells had a count value.&lt;/P&gt;&lt;P&gt;Luckily this file is small enough, i went ahead and opened it in excel and did went to the text to columns option and did a fixed width, which seems to do a good job at trimming and fixing oddities like this, saved that file and imported it into Qlikview.&lt;/P&gt;&lt;P&gt;This is supposed to be more of an exercise. The idea is that later, I will be given a much bigger data set (one that can't be opened in either excel or notepad) and I would use Qlikview to import and clean.&lt;/P&gt;&lt;P&gt;This isn't the first time I've seen something odd like this happen, however, I worked around it in the past. But there's going to come a point where working around it won't cut it. This is the first time I've seen it affect all fields in a data set though.&lt;/P&gt;&lt;P&gt;I'd still like to see if we can figure out what's going on and fix it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 21:53:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294313#M1201220</guid>
      <dc:creator>kkorynta</dc:creator>
      <dc:date>2010-12-13T21:53:25Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294314#M1201221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since there is only one row of spaces, then all of your blank fields share the same value. You should be able to show only "null" Tax IDs in a table by selecting that blank line in the list box.&lt;/P&gt;&lt;P&gt;Looking at your Excel file, the blank Tax ID fields actually contain an empty string. There are no spaces in that field. Try this Set Analysis:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Count({&amp;lt;Tax ID={''}&amp;gt;} Tax ID)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;Those are single quotes with NO space in between. &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;It's kind of hard to troubleshoot without being able to see how the data is imported into QlikView. When I load your Excel file into QlikView (using the Wizard, no modifications), I get the blank Tax ID values as Nulls. I can tell by making a chart and changing the Null symbol from - to N.&lt;/P&gt;&lt;P&gt;Have your tried (in your load):&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;If(IsNull([Taxonomy Code]), '-', [Taxonomy Code]) As Taxonomy Code&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;If you do that, you replace the Null values with the dash symbol and it should be easy to pull those values out using selections or Set Analysis. &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 22:12:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294314#M1201221</guid>
      <dc:creator />
      <dc:date>2010-12-13T22:12:26Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294315#M1201222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;count({Tax ID={''}&amp;gt;} Tax ID) works for post load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The if isnull statement does not. I do find this quite odd. And even still, what's more odd about this, which I probably should have mentioned earlier, is that this field has 3 particular cases: ones with '' as you brought up, ones with '-' as missing (which I was expecting), and ones with an actual value.&lt;/P&gt;&lt;P&gt;I went ahead and uploaded the NPI data set so you can examine that one. Do note that whoever queried this data didn't realize that an auto delimiter was turned on, so when they wrote the query to include a second delimiter, it ended up double delimiting. In other words, the ~~ you'll see should only be ~.&lt;/P&gt;&lt;P&gt;Here's my load statement I've been working on currently. The first NPI table is the problem table in question.&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;BR /&gt;SET DecimalSep='.';&lt;BR /&gt;SET MoneyThousandSep=',';&lt;BR /&gt;SET MoneyDecimalSep='.';&lt;BR /&gt;SET MoneyFormat='$#,##0.00;($#,##0.00)';&lt;BR /&gt;SET TimeFormat='h:mm:ss TT';&lt;BR /&gt;SET DateFormat='M/D/YYYY';&lt;BR /&gt;SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';&lt;BR /&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;BR /&gt;&lt;BR /&gt;[Taxonomy List]:&lt;BR /&gt;NoConcatenate LOAD text(trim(@1)) as [Code Key],&lt;BR /&gt; text(trim(@2)) as [Taxonomy Code],&lt;BR /&gt; text(trim(@3)) as [Taxonomy Description]&lt;BR /&gt;FROM &lt;C&gt; (txt, codepage is 1252, no labels, delimiter is ';', msq);&lt;BR /&gt;&lt;BR /&gt;[NPI]:&lt;BR /&gt;LOAD text(trim(@1)) as [Customer Entity],&lt;BR /&gt; @3 as [Entity ID],&lt;BR /&gt; @5 as [Revision No],&lt;BR /&gt; @7 as [Entity Type],&lt;BR /&gt; if(Isnull(@9), '-', @9) as NPI,&lt;BR /&gt; text(trim(@1)) &amp;amp; text(trim(@3)) as [Special Key]&lt;BR /&gt;FROM &lt;C&gt; (txt, codepage is 1252, no labels, delimiter is '~', msq);&lt;BR /&gt;/*&lt;BR /&gt;[NPI]:&lt;BR /&gt;LOAD A as [Customer Entity],&lt;BR /&gt; B as [Entity ID],&lt;BR /&gt; C as [Revision No],&lt;BR /&gt; D as [Entity Type],&lt;BR /&gt; E as NPI,&lt;BR /&gt; A &amp;amp; B as [Special Key]&lt;BR /&gt;FROM &lt;C&gt; (ooxml, no labels, table is npi_20101209);&lt;BR /&gt;*/&lt;BR /&gt;[NPI 2]:&lt;BR /&gt;NoConcatenate Load [Special Key], max([Revision No]) as [Max Revision No], NPI, [Customer Entity]&lt;BR /&gt;Resident [NPI]&lt;BR /&gt;Group By [Special Key], NPI, [Customer Entity];&lt;BR /&gt;&lt;BR /&gt;Drop Table NPI;&lt;BR /&gt;&lt;BR /&gt;[Facility Provider]:&lt;BR /&gt;LOAD text(trim(@1)) as [Customer Entity],&lt;BR /&gt; @3 as [Staff Entity],&lt;BR /&gt; @5 as [Revision No],&lt;BR /&gt; @7 as [Last Name],&lt;BR /&gt; @9 as [First Name],&lt;BR /&gt; @11 as [Entity Qualifier],&lt;BR /&gt; @13 as Registered,&lt;BR /&gt; @15 as [Provider Type],&lt;BR /&gt; @17 as [Taxonomy Code],&lt;BR /&gt; @19 as [Facility Entity],&lt;BR /&gt; @20 as [Organization Name],&lt;BR /&gt; text(trim(@1)) &amp;amp; text(trim(@3)) as [Special Key]&lt;BR /&gt;FROM &lt;C&gt; (txt, codepage is 1252, no labels, delimiter is '~', msq);&lt;BR /&gt;&lt;BR /&gt;[Facility Provider 2]:&lt;BR /&gt;NoConcatenate Load [Special Key], max([Revision No]) as [Max Revision No], [Facility Entity], [Organization Name], [Customer Entity]&lt;BR /&gt;Resident [Facility Provider]&lt;BR /&gt;Group By [Special Key], [Facility Entity], [Organization Name], [Customer Entity];&lt;BR /&gt;&lt;BR /&gt;Drop Table [Facility Provider];&lt;BR /&gt;&lt;BR /&gt;[Rendering Provider]:&lt;BR /&gt;NoConcatenate LOAD text(trim(@1)) as [Customer Entity],&lt;BR /&gt; @2 as [Staff Entity],&lt;BR /&gt; @3 as [Revision No],&lt;BR /&gt; @4 as [Last Name],&lt;BR /&gt; @5 as [First Name],&lt;BR /&gt; @6 as [Entity Qualifier],&lt;BR /&gt; @7 as Registered,&lt;BR /&gt; @8 as [Provider Type],&lt;BR /&gt; text(trim(@9)) as [Code Key],&lt;BR /&gt; text(trim(@1)) &amp;amp; text(trim(@2)) as [Special Key]&lt;BR /&gt;FROM &lt;C&gt; (txt, codepage is 1252, no labels, delimiter is ';', msq);&lt;BR /&gt;&lt;BR /&gt;[Registered]:&lt;BR /&gt;NoConcatenate Load [Customer Entity] as [Reg Customer Entity],&lt;BR /&gt;[Staff Entity] as [Reg Staff Entity],&lt;BR /&gt;[First Name] &amp;amp; ' ' &amp;amp; [Last Name] as [Reg Name],&lt;BR /&gt;Registered&lt;BR /&gt;Resident [Rendering Provider];&lt;BR /&gt;&lt;BR /&gt;[Rendering Provider 2]:&lt;BR /&gt;NoConcatenate Load [Special Key], max([Revision No]) as [Max Revision No], [Last Name], [First Name], [Entity Qualifier], [Code Key], [Customer Entity]&lt;BR /&gt;Resident [Rendering Provider]&lt;BR /&gt;Group By [Special Key], [Last Name], [First Name], [Entity Qualifier], [Code Key], [Customer Entity];&lt;BR /&gt;&lt;BR /&gt;Drop Table [Rendering Provider];&lt;BR /&gt;&lt;BR /&gt;Left Join ([Rendering Provider 2])&lt;BR /&gt;Load [Special Key], NPI&lt;BR /&gt;Resident [NPI 2];&lt;BR /&gt;&lt;BR /&gt;[NPI Provider Facility Merge]:&lt;BR /&gt;NoConcatenate Load [Special Key], [Max Revision No], [Last Name], [First Name], [Entity Qualifier], [Code Key], NPI, [Customer Entity]&lt;BR /&gt;Resident [Rendering Provider 2];&lt;BR /&gt;&lt;BR /&gt;Drop Tables [NPI 2], [Rendering Provider 2];&lt;BR /&gt;&lt;BR /&gt;Left Join ([NPI Provider Facility Merge])&lt;BR /&gt;Load [Code Key], [Taxonomy Code], [Taxonomy Description]&lt;BR /&gt;Resident [Taxonomy List];&lt;BR /&gt;&lt;BR /&gt;Drop Table [Taxonomy List];&lt;BR /&gt;&lt;BR /&gt;Left Join ([NPI Provider Facility Merge])&lt;BR /&gt;Load [Special Key], [Organization Name], [Facility Entity]&lt;BR /&gt;Resident [Facility Provider 2];&lt;BR /&gt;&lt;BR /&gt;Drop Table [Facility Provider 2];&lt;BR /&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Dec 2010 22:32:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294315#M1201222</guid>
      <dc:creator>kkorynta</dc:creator>
      <dc:date>2010-12-13T22:32:40Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294316#M1201223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Morning! (bump)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 16:18:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294316#M1201223</guid>
      <dc:creator>kkorynta</dc:creator>
      <dc:date>2010-12-14T16:18:22Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294317#M1201224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, that is an odd file. Delimited and Fixed Width at the same time. When I open it in a full text editor, the blank NPI codes have a bunch of spaces before the line breaks. As you can see in some of the other fields, there are padded spaces to make the fields a fixed length.&lt;/P&gt;&lt;P&gt;I loaded the file into QlikView and it's a little weird. In the load, the values don't seem to be treated as Nulls. If I use:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;IsNull(@9) As NPI_Test&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;Every field returns a FALSE. Once the data is loaded though, the values are null in the expression. &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I also tried:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;@9='' As NPI_Test&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;A few fields show up as TRUE, but most show up as Null. &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I don't even know if processing would help. Anyway, I can get all the null or blank fields by using:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;If(IsNull(NPI) or NPI='', 'Missing', NPI)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 17:12:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294317#M1201224</guid>
      <dc:creator />
      <dc:date>2010-12-14T17:12:48Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294318#M1201225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That will work. ^_^&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what's going on in the source file that would cause this? Other than the issue with the guy who pulled the data forgetting delimiters were already auto assigned, that's generally how I get the data. I'm not sure why SQL+ decides to pad for fixed width, it's a little obnoxious. However, I'm aware of it, and if I need to match/join on a variable I just make sure they're trimmed and it's proper.Usually, Qlikview does a good job at auto cleaning the data. This is by far the most trouble I've seen it have.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 17:42:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294318#M1201225</guid>
      <dc:creator>kkorynta</dc:creator>
      <dc:date>2010-12-14T17:42:10Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294319#M1201226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm stumped as to what is happening with that file. I took a subset of the data and processed it in a text editor to remove all spaces and convert the ~~ to commas. I then reloaded that as a csv and I still have some fields with blanks and some with nulls. I then added another comma to the end of every line to see if the end line character could be an issue. Same deal.&lt;/P&gt;&lt;P&gt;I'm looking at the processed text file now and I am sure that there are no spaces in the fields. Some of them still load null and some the empty string.&lt;/P&gt;&lt;P&gt;There doesn't seem to be anything that could cause this issue, yet there it is. Weird.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 17:55:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294319#M1201226</guid>
      <dc:creator />
      <dc:date>2010-12-14T17:55:54Z</dc:date>
    </item>
    <item>
      <title>Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294320#M1201227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, on the bright side, thanks to your help, I'll know how to handle it the next time it happens.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Dec 2010 18:11:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/294320#M1201227</guid>
      <dc:creator>kkorynta</dc:creator>
      <dc:date>2010-12-14T18:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Force blank cells to be missing</title>
      <link>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/1668599#M1201228</link>
      <description>&lt;P&gt;Not sure about from the text file used here, but this worked for me for a csv:&lt;/P&gt;&lt;P&gt;Set NullInterpret = '';&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2020 16:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Force-blank-cells-to-be-missing/m-p/1668599#M1201228</guid>
      <dc:creator>godfreydaniels</dc:creator>
      <dc:date>2020-01-23T16:48:16Z</dc:date>
    </item>
  </channel>
</rss>

