<?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>article Leading zeros are missing in loaded data values in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/ta-p/1711882</link>
    <description>&lt;P&gt;QlikView and Qlik Sense load either missing or additional zeros, compared to the values in the data source.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For example data like in the below script&amp;nbsp;is loaded with incorrect leading zeros.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LOAD * Inline [
F1, F2
1, a
01, b
02, c
2, d
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the second row the leading zero is missing, and on the fourth row, there is an unexpected additional leading zero.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leading zeroes missing.png" style="width: 103px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104600iEE9EEB23F5279B38/image-size/large?v=v2&amp;amp;px=999" role="button" title="leading zeroes missing.png" alt="leading zeroes missing.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Environment:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;LI-PRODUCT title="QlikView" id="qlikView"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-PRODUCT title="Qlik Sense Enterprise on Windows" id="qlikSenseEnterpriseWindows"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-PRODUCT title="Qlik Cloud" id="qlikSenseEnterpriseSaaS"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Cause:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;The observed behaviour is a part of fundamental Qlik engine functionality and data compression technique.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In short, this means that&amp;nbsp;Qlik interprets and associates loaded data by best effort. As part of Qlik optimization and compression technique the same reoccurring value in a field is stored on the first occurrence only, and the following occurrence reference to the first (stored) value. This means that two values with identical numerical representation can not be stored with two different textual presentations in the same field in Qlik.&lt;/P&gt;
&lt;P&gt;Please keep in mind that all numerical values in Qlik act as dual values. This means that they have an underlying numerical value that is used for calculations, and a textual formatted value which is the value seen in charts or as calculations results.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In the example below four rows of data are loaded. In the field F1 there are four different value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LOAD * Inline [
F1, F2
1, a
01, b
02, c
2, d
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The first value in F1 is interpreted by Qlik as a numerical 1&lt;/LI&gt;
&lt;LI&gt;The first value is stored as numerical value 1 with textual presentation 1&lt;/LI&gt;
&lt;LI&gt;The second value in F1 is interpreted by Qlik as a numerical 1&lt;/LI&gt;
&lt;LI&gt;There is already a numerical value 1 stored in the field F1, so Qlik associates the second occurrence to the first value. This means that the value 01 will be associated as a numerical 1 with presentation value 1.&lt;/LI&gt;
&lt;LI&gt;The third&amp;nbsp;value in F1 is interpreted by Qlik as a numerical 2&lt;/LI&gt;
&lt;LI&gt;There is no other value stored in the field&amp;nbsp;&amp;nbsp;F1&amp;nbsp;as a numerical 2, hence this value is stored as numerical 2 with the textual presentation value 02.&lt;/LI&gt;
&lt;LI&gt;The fourth&amp;nbsp;value in F1 is interpreted by Qlik as a numerical 2&lt;/LI&gt;
&lt;LI&gt;There is already a numerical value 2&amp;nbsp;stored in the field&amp;nbsp;F1, so Qlik associates the second occurrence to the first value. This means that the value 2&amp;nbsp;will be associated as a numerical 2&amp;nbsp;with presentation value 02.&lt;/LI&gt;
&lt;LI&gt;The loaded data will visually not look like the data source.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leading zeroes missing.png" style="width: 103px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104601i2E21F7FBF591A533/image-size/large?v=v2&amp;amp;px=999" role="button" title="leading zeroes missing.png" alt="leading zeroes missing.png" /&gt;&lt;/span&gt;&lt;BR /&gt;
&lt;P&gt; &lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;Identical numerical values are associated with the same textual presentation value in Qlik . For this reason, it is not possible to store the same numerical value with different textual presentation values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way to resolve this is to format the values as text by using Text() during reload.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LOAD 
    text(F1) as F1,
    F2
Inline [
F1, F2
1, a
01, b
02, c
2, d
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will result in the visual values looking identical to the data source.&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sorting identical to data source.png" style="width: 83px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104602iDA67186D16DA81E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="sorting identical to data source.png" alt="sorting identical to data source.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;NOTE: &lt;/STRONG&gt;Value formatted with Text() will not have underlying numerical values, hence calculations on these values is not possible.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Apr 2023 11:02:44 GMT</pubDate>
    <dc:creator>ToniKautto</dc:creator>
    <dc:date>2023-04-11T11:02:44Z</dc:date>
    <item>
      <title>Leading zeros are missing in loaded data values</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/ta-p/1711882</link>
      <description>&lt;P&gt;QlikView and Qlik Sense load either missing or additional zeros, compared to the values in the data source.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For example data like in the below script&amp;nbsp;is loaded with incorrect leading zeros.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LOAD * Inline [
F1, F2
1, a
01, b
02, c
2, d
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On the second row the leading zero is missing, and on the fourth row, there is an unexpected additional leading zero.&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leading zeroes missing.png" style="width: 103px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104600iEE9EEB23F5279B38/image-size/large?v=v2&amp;amp;px=999" role="button" title="leading zeroes missing.png" alt="leading zeroes missing.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;H4&gt;&lt;STRONG&gt;&lt;FONT color="#339966"&gt;Environment:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H4&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;LI-PRODUCT title="QlikView" id="qlikView"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-PRODUCT title="Qlik Sense Enterprise on Windows" id="qlikSenseEnterpriseWindows"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-PRODUCT title="Qlik Cloud" id="qlikSenseEnterpriseSaaS"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;&lt;BR /&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Cause:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H4&gt;
&lt;P&gt;The observed behaviour is a part of fundamental Qlik engine functionality and data compression technique.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In short, this means that&amp;nbsp;Qlik interprets and associates loaded data by best effort. As part of Qlik optimization and compression technique the same reoccurring value in a field is stored on the first occurrence only, and the following occurrence reference to the first (stored) value. This means that two values with identical numerical representation can not be stored with two different textual presentations in the same field in Qlik.&lt;/P&gt;
&lt;P&gt;Please keep in mind that all numerical values in Qlik act as dual values. This means that they have an underlying numerical value that is used for calculations, and a textual formatted value which is the value seen in charts or as calculations results.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In the example below four rows of data are loaded. In the field F1 there are four different value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LOAD * Inline [
F1, F2
1, a
01, b
02, c
2, d
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The first value in F1 is interpreted by Qlik as a numerical 1&lt;/LI&gt;
&lt;LI&gt;The first value is stored as numerical value 1 with textual presentation 1&lt;/LI&gt;
&lt;LI&gt;The second value in F1 is interpreted by Qlik as a numerical 1&lt;/LI&gt;
&lt;LI&gt;There is already a numerical value 1 stored in the field F1, so Qlik associates the second occurrence to the first value. This means that the value 01 will be associated as a numerical 1 with presentation value 1.&lt;/LI&gt;
&lt;LI&gt;The third&amp;nbsp;value in F1 is interpreted by Qlik as a numerical 2&lt;/LI&gt;
&lt;LI&gt;There is no other value stored in the field&amp;nbsp;&amp;nbsp;F1&amp;nbsp;as a numerical 2, hence this value is stored as numerical 2 with the textual presentation value 02.&lt;/LI&gt;
&lt;LI&gt;The fourth&amp;nbsp;value in F1 is interpreted by Qlik as a numerical 2&lt;/LI&gt;
&lt;LI&gt;There is already a numerical value 2&amp;nbsp;stored in the field&amp;nbsp;F1, so Qlik associates the second occurrence to the first value. This means that the value 2&amp;nbsp;will be associated as a numerical 2&amp;nbsp;with presentation value 02.&lt;/LI&gt;
&lt;LI&gt;The loaded data will visually not look like the data source.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="leading zeroes missing.png" style="width: 103px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104601i2E21F7FBF591A533/image-size/large?v=v2&amp;amp;px=999" role="button" title="leading zeroes missing.png" alt="leading zeroes missing.png" /&gt;&lt;/span&gt;&lt;BR /&gt;
&lt;P&gt; &lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Resolution:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;Identical numerical values are associated with the same textual presentation value in Qlik . For this reason, it is not possible to store the same numerical value with different textual presentation values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One way to resolve this is to format the values as text by using Text() during reload.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;LOAD 
    text(F1) as F1,
    F2
Inline [
F1, F2
1, a
01, b
02, c
2, d
];&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will result in the visual values looking identical to the data source.&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sorting identical to data source.png" style="width: 83px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104602iDA67186D16DA81E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="sorting identical to data source.png" alt="sorting identical to data source.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;NOTE: &lt;/STRONG&gt;Value formatted with Text() will not have underlying numerical values, hence calculations on these values is not possible.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 11:02:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/ta-p/1711882</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2023-04-11T11:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Leading zeros are missing in loaded data values</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2085136#M9473</link>
      <description>&lt;P&gt;Any chance this behavior will ever be "fixed"?&amp;nbsp;&lt;BR /&gt;Spend hours finding out why a match did not work and then finding a way to create a valid workaround.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Eventually used&amp;nbsp;&lt;SPAN&gt;IF(LEN(EANcode)&amp;lt;&amp;gt;LEN(NUM(EANcode)), TEXT(EANcode), EANcode) AS EANcode,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;To get both values in the application.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-keeps-formatting-numbers-based-on-first-match/td-p/2084295" target="_blank"&gt;https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-keeps-formatting-numbers-based-on-first-match/td-p/2084295&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 07:18:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2085136#M9473</guid>
      <dc:creator>p_verkooijen</dc:creator>
      <dc:date>2023-06-19T07:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: Leading zeros are missing in loaded data values</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2085296#M9476</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28986"&gt;@p_verkooijen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are unaware of a plan to change the behaviour. If you want to raise awareness with our product team to have this reviewed, I suggest raising an idea here: &lt;A href="https://community.qlik.com/t5/ideation/ct-p/qlik-product-insight" target="_blank" rel="noopener"&gt;Ideation&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 12:55:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2085296#M9476</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2023-06-19T12:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Leading zeros are missing in loaded data values</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2433641#M13582</link>
      <description>&lt;P&gt;We've used to deal with this issue as described above in our on-prem Qlik Enterprise landscape. Any recommendation how to overcome this issue when loading data via &lt;STRONG&gt;Qlik DataTransfer&lt;/STRONG&gt; into cloud? (no possibility to edit load statement to add text()-formula...)&lt;/P&gt;
&lt;P&gt;Highly appreciate any tips...&lt;/P&gt;
&lt;P&gt;Best regards Sam&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 09:13:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2433641#M13582</guid>
      <dc:creator>SamKng</dc:creator>
      <dc:date>2024-03-22T09:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: Leading zeros are missing in loaded data values</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2434195#M13597</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/100198"&gt;@SamKng&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For detailed assistance with this, please post your requirements directly in the&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Connectivity-Data-Prep/bd-p/qlik-sense-data-connectivity" target="_blank" rel="noopener"&gt;Qlik Sense Data Connectivity&lt;/A&gt; forum, where our active support agents and your knowledgeable Qlik peers can assist you.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2024 10:31:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2434195#M13597</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2024-03-25T10:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Leading zeros are missing in loaded data values</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2483137#M14643</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm managing an ETL app where a lot of fields need to be treated as text.&lt;/P&gt;
&lt;P&gt;Since the load is based on a simple SELECT * I would need to change every Load * to a list of fields with the Text() function.&lt;/P&gt;
&lt;P&gt;Moreover, additional fields are planned to be added in the future to the DB.&lt;/P&gt;
&lt;P&gt;Is there a way to avoid this changes?&lt;/P&gt;
&lt;P&gt;A global setting to be set in the initial part of the main script would be the ideal solution.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 07:25:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2483137#M14643</guid>
      <dc:creator>Fabiano_Martino_Intelco</dc:creator>
      <dc:date>2024-09-24T07:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Leading zeros are missing in loaded data values</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2484631#M14688</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/229844"&gt;@Fabiano_Martino_Intelco&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For detailed assistance, please post your requirements directly in the&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Connectivity-Data-Prep/bd-p/qlik-sense-data-connectivity" target="_blank" rel="noopener"&gt;Qlik Sense Data Connectivity&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;forum, where our active support agents and your knowledgeable Qlik peers can assist you.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2024 12:08:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2484631#M14688</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2024-10-01T12:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Leading zeros are missing in loaded data values</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2512273#M15615</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;could you give us a hint, why the decribed behaviour occurs not in all cases. We made a test&amp;nbsp;with exactly same data uploaded into 2 sources: MS SQL Server and Snowflake (tested field type is Varchar in both). Results are the following:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Data extracted from&amp;nbsp;&amp;nbsp;MS SQL Server bahaves as described in the article&lt;/LI&gt;&lt;LI&gt;Data extracted from Snowflake is NOT changed - it keeps both values with leading zeros and without, with dots at the end and without, etc.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;What is the reason for this? Why does it behave differently? Why is described "&lt;SPAN&gt;fundamental Qlik engine functionality and data compression technique&lt;/SPAN&gt;" not working in all cases? What does it depend on?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Milda&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2025 05:34:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Leading-zeros-are-missing-in-loaded-data-values/tac-p/2512273#M15615</guid>
      <dc:creator>MildaV</dc:creator>
      <dc:date>2025-03-31T05:34:13Z</dc:date>
    </item>
  </channel>
</rss>

