<?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: Missing Values in QV Document in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1586087#M739099</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Try this...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Item_Filter:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RowNo() as rowid,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;text(Master_ItemNumber) as Item_Filter ,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Master_ItemName as ItemName_Filter ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SQL SELECT&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;*&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FROM [DM_SER].[Dim].[Item]&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 11:12:01 GMT</pubDate>
    <dc:creator>Colin-Albert</dc:creator>
    <dc:date>2019-05-29T11:12:01Z</dc:date>
    <item>
      <title>Missing Values in QV Document</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1585781#M739095</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am connecting to SQL Server Source , extracting data from table with 1 column(nvarchar) and 2 records (123 , 0123) using Select statement with out any filters.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i use list box i only get 0123 not 123. Can you please help me here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Praveen&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1585781#M739095</guid>
      <dc:creator>PraveenNavara</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Values in QV Document</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1585786#M739096</link>
      <description>&lt;P&gt;It's difficult to answer without seeing your load script and your data. Here'a a guess. Go to your listbox properties and change presentation|alignment|numbers to left.&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2019 19:06:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1585786#M739096</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2019-05-28T19:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Values in QV Document</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1585790#M739097</link>
      <description>Hi ,&lt;BR /&gt;This is my Load Script&lt;BR /&gt;Item_Filter:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;*&lt;BR /&gt;FROM [DM_SER].[Dim].[Item] // Fetches 37 Million Records out of which 135161 has 18 records and 0135161 has 20 records&lt;BR /&gt;&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ItemTmp_Filter:&lt;BR /&gt;LOAD&lt;BR /&gt;RowNo() as rowid,&lt;BR /&gt;Master_ItemNumber as Item_Filter ,&lt;BR /&gt;Master_ItemName as ItemName_Filter&lt;BR /&gt;Resident Item_Filter&lt;BR /&gt;where text(rtrim(ltrim(Master_ItemNumber)))='135161'; // Even then its giving only 0135161 in list box not actual filtered value&lt;BR /&gt;&lt;BR /&gt;drop table Item_Filter;</description>
      <pubDate>Tue, 28 May 2019 19:15:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1585790#M739097</guid>
      <dc:creator>PraveenNavara</dc:creator>
      <dc:date>2019-05-28T19:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Values in QV Document</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1586080#M739098</link>
      <description>&lt;P&gt;When Qlik loads your data, it reads the first value 0123, and recognises this as an integer 123 and stores the data as 0123.&lt;/P&gt;&lt;P&gt;When the second value 123 is loaded, Qlik recognises that data for 123 already exists, so stores the same value again for the second row. Hence you only see the value 0123 for both rows that are loaded in your Qlik data.&lt;/P&gt;&lt;P&gt;You either need to cleanse your data, or if you want 0123 and 123 stored as separate values, use the &lt;STRONG&gt;text()&lt;/STRONG&gt; function in your load script.&lt;/P&gt;&lt;P&gt;text(columnX) as columnX&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 11:07:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1586080#M739098</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2019-05-29T11:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Values in QV Document</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1586087#M739099</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Try this...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Item_Filter:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RowNo() as rowid,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;text(Master_ItemNumber) as Item_Filter ,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Master_ItemName as ItemName_Filter ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SQL SELECT&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;*&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;FROM [DM_SER].[Dim].[Item]&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 11:12:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1586087#M739099</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2019-05-29T11:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Values in QV Document</title>
      <link>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1586143#M739100</link>
      <description>&lt;P&gt;Thank You. It Worked&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 12:55:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Missing-Values-in-QV-Document/m-p/1586143#M739100</guid>
      <dc:creator>PraveenNavara</dc:creator>
      <dc:date>2019-05-29T12:55:33Z</dc:date>
    </item>
  </channel>
</rss>

