<?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: Excel data stored as text in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395922#M1150111</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert, i've amended the 2013 data script to:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13692317185099703" jivemacro_uid="_13692317185099703"&gt;&lt;P&gt;JanToMar840416_2013:&lt;/P&gt;&lt;P&gt;LOAD [Account number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Card Number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Driver name], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Registration number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transaction date], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transaction mileage amount], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Product Charge description], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Quantity, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Unit price], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Gross amount], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Brand name], &lt;/P&gt;&lt;P&gt; &lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' ' &amp;amp; [Card Number] as [Card number],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year ([Transaction date]) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ([Transaction date]) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yearname([Transaction date],0,4) as 'Financial Year'&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[2012-13 car downloads\840416_Jan_Mar_13.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1, filters(&lt;/P&gt;&lt;P&gt;Remove(Col, Pos(Top, 3))));&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt; However the card number still shows as having a space in the 2013 data:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="41550" class="jive-image-thumbnail jive-image" onclick="" alt="Chart.png" src="https://community.qlik.com/legacyfs/online/41550_Chart.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;And by not concatenating my file now contains a synthetic table which i've been trying to avoid?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 May 2013 14:16:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-05-22T14:16:10Z</dc:date>
    <item>
      <title>Excel data stored as text</title>
      <link>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395918#M1150107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I used QV to display company fuel card data, by loading in monthly excel data files. Unfortunately the fuel card company has changed (but we have kept the same 16 digit long fuel card numbers) &amp;amp; so the excel report format has also changed.&lt;/P&gt;&lt;P&gt;The '2012 company' reported 16 digit fuel card numbers as 'general' cell format within excel, but the value had a space before it to ensure excel reported the entire 16 digit value.&lt;/P&gt;&lt;P&gt;The new '2103 company' report the 16 digit fuel card number as 'text' cell format within excel, with no space before the 16 digit value.&lt;/P&gt;&lt;P&gt;When i load this into QV (by concatenating the 1st file) it is displaying two different fuel card numbers, for example '1234567812345678' and ' 1234567812354678'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a simple way to tell QV that these should load in as the same, i.e. how can i get it to add a space before the '2013 company's' text value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 12:12:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395918#M1150107</guid>
      <dc:creator />
      <dc:date>2013-05-22T12:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Excel data stored as text</title>
      <link>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395919#M1150108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;' ' &amp;amp; ColumnX as cardnumber&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An alternative is to strip the preceding space by using the trim function in both loads:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;trim(ColumnX) as cardnumber&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 12:40:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395919#M1150108</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-05-22T12:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Excel data stored as text</title>
      <link>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395920#M1150109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your response, i'm having trouble getting the new text into the correct part of the script....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my first loaded file script:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13692283790834314" jivemacro_uid="_13692283790834314"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;April840416_2012:&lt;/P&gt;&lt;P&gt;LOAD [Account number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Registration number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Driver name], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Card number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Gross amount], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Unit price], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Quantity, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Product Charge description], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transaction date], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transaction mileage amount], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Brand name],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year ([Transaction date]) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ([Transaction date]) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yearname([Transaction date],0,4) as 'Financial Year'&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[2012-13 car downloads\840416_Apr_12.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, header is 5 lines, table is [626717_report120531112103])&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this is the new data file:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13692284348806294" jivemacro_uid="_13692284348806294"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JanToMar840416_2013:&lt;/P&gt;&lt;P&gt;CONCATENATE (April840416_2012) LOAD *,&lt;/P&gt;&lt;P&gt; Year ([Transaction date]) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ([Transaction date]) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yearname([Transaction date],0,4) as 'Financial Year'&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[2012-13 car downloads\840416_Jan_Mar_13.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;WHERE [Product Charge description] &amp;lt;&amp;gt;'Card Fee';&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally i'd like to use " ' ' &amp;amp; ColumnX as cardnumber" but it didn't work when i tried adding the following to the new 2013 data:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13692286048628420" jivemacro_uid="_13692286048628420"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JanToMar840416_2013:&lt;/P&gt;&lt;P&gt;CONCATENATE (April840416_2012) LOAD *,&lt;/P&gt;&lt;P&gt; Year ([Transaction date]) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ([Transaction date]) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yearname([Transaction date],0,4) as 'Financial Year',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' ' &amp;amp; [Card number] as [Card number]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[2012-13 car downloads\840416_Jan_Mar_13.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;WHERE [Product Charge description] &amp;lt;&amp;gt;'Card Fee';&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where should the text go?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 13:18:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395920#M1150109</guid>
      <dc:creator />
      <dc:date>2013-05-22T13:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Excel data stored as text</title>
      <link>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395921#M1150110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should go instead of the *. The * means load all fields so you already have a field named [Card number]. Trying to add it again will result in an error message. You'll have to list all the fields like you did for the 2012 load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 13:26:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395921#M1150110</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-05-22T13:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Excel data stored as text</title>
      <link>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395922#M1150111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert, i've amended the 2013 data script to:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13692317185099703" jivemacro_uid="_13692317185099703"&gt;&lt;P&gt;JanToMar840416_2013:&lt;/P&gt;&lt;P&gt;LOAD [Account number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Card Number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Driver name], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Registration number], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transaction date], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transaction mileage amount], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Product Charge description], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Quantity, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Unit price], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Gross amount], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Brand name], &lt;/P&gt;&lt;P&gt; &lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' ' &amp;amp; [Card Number] as [Card number],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year ([Transaction date]) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ([Transaction date]) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yearname([Transaction date],0,4) as 'Financial Year'&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[2012-13 car downloads\840416_Jan_Mar_13.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1, filters(&lt;/P&gt;&lt;P&gt;Remove(Col, Pos(Top, 3))));&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt; However the card number still shows as having a space in the 2013 data:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="41550" class="jive-image-thumbnail jive-image" onclick="" alt="Chart.png" src="https://community.qlik.com/legacyfs/online/41550_Chart.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;And by not concatenating my file now contains a synthetic table which i've been trying to avoid?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2013 14:16:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395922#M1150111</guid>
      <dc:creator />
      <dc:date>2013-05-22T14:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Excel data stored as text</title>
      <link>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395923#M1150112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try with the same number of fields&amp;nbsp; - it should avoid the synthetic key at least.&amp;nbsp; Also I would personally go for the trim rather than the pad approach as Gysbert suggested.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;April840416_2012:&lt;BR /&gt;LOAD [Account number], &lt;BR /&gt;trim(&amp;nbsp;&amp;nbsp; [Card number]) as [Card number], &lt;BR /&gt;[Driver name], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Registration number], &lt;BR /&gt;&amp;nbsp;&amp;nbsp; [Transaction date], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transaction mileage amount], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Product Charge description], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Quantity, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Unit price], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Gross amount], &lt;BR /&gt;&amp;nbsp;&amp;nbsp; [Brand name],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year ([Transaction date]) as Year,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ([Transaction date]) as Month,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yearname([Transaction date],0,4) as 'Financial Year'&lt;BR /&gt;FROM&lt;BR /&gt;[2012-13 car downloads\840416_Apr_12.xlsx]&lt;BR /&gt;(ooxml, embedded labels, header is 5 lines, table is [626717_report120531112103]);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;concatenate&lt;/P&gt;&lt;P&gt;LOAD [Account number], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Driver name], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Registration number], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transaction date], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Transaction mileage amount], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Product Charge description], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Quantity, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Unit price], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Gross amount], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Brand name], &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trim( [Card Number] ) as [Card number],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year ([Transaction date]) as Year,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month ([Transaction date]) as Month,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; yearname([Transaction date],0,4) as 'Financial Year'&lt;BR /&gt;FROM&lt;BR /&gt;[2012-13 car downloads\840416_Jan_Mar_13.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1, filters(&lt;BR /&gt;Remove(Col, Pos(Top, 3))));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 16:05:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395923#M1150112</guid>
      <dc:creator />
      <dc:date>2013-05-23T16:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Excel data stored as text</title>
      <link>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395924#M1150113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt; i.e. how can i get it to add a space before the '2013 company's' text value?&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You ask...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;However the card number still shows as having a space in the 2013 data:&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And you get what you asked for. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem solved &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you changed your mind and don't want spaces then don't add them in the first place and remove them if they are there already with the trim function,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 May 2013 17:05:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395924#M1150113</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-05-23T17:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Excel data stored as text</title>
      <link>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395925#M1150114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I used the trim function on all 2012 data - renamed to match the new 2013 data, which then allowed me to concatenate in 2013 data &amp;amp; avoid synthetic tables&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/blush.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 May 2013 15:55:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excel-data-stored-as-text/m-p/395925#M1150114</guid>
      <dc:creator />
      <dc:date>2013-05-24T15:55:37Z</dc:date>
    </item>
  </channel>
</rss>

