<?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 AW:Manipulate a field in existing data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226105#M78339</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have another problem. My Project file name is KP.qvd. There is only one table inside my QV report and its name is V_QV_Database_Size. This table has around five fields. I want to add one field Month as i mentioned above. However, When I try the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *, Month(Run_Date)&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;(KP.qvw)[table is V_QV_Database_Size]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it gives an error message that field &amp;lt;Run_Date&amp;gt; does not exist. When i just use the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;[KP.qvw](table is V_QV_Database_Size), it loads only a single field with grabage data inside it. The report that i currently have has correct data and is working quite fine. I have checked inside the table viewer and everything is there. All fields are there in this table. Any idea where am I making the mistake?&lt;/P&gt;&lt;P&gt;Arif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Feb 2011 10:33:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-02-23T10:33:26Z</dc:date>
    <item>
      <title>Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226097#M78331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have loaded some data into qlikview. There is one field called run_date. I want to add one more column called my_month into the Qlikview table. This would be calculated as Month(Run_Date) as my_month.&lt;/P&gt;&lt;P&gt;Now my question is how do i perform this task using load statement. will the data be loaded again from database? . Do i have to include the rest of columns too in the load statement, or do i just need to include the renaming column, and i dont need to disturb the rest of data. I am new to Qlikview so kindly elaborate it simply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-br&lt;/P&gt;&lt;P&gt;Syed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Feb 2011 15:41:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226097#M78331</guid>
      <dc:creator />
      <dc:date>2011-02-22T15:41:11Z</dc:date>
    </item>
    <item>
      <title>AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226098#M78332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ArifShah,&lt;/P&gt;&lt;P&gt;as simple as:&lt;/P&gt;&lt;P&gt;LOAD Run_Date,&lt;/P&gt;&lt;P&gt;Month(Run_Date) AS RunDateMonth&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This one is calculated during the load script execution and than hardlinked in your data. If you don't need the Run_Date itself, simply take it off your LOAD (and SQL) statement.&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Florian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Feb 2011 15:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226098#M78332</guid>
      <dc:creator />
      <dc:date>2011-02-22T15:44:16Z</dc:date>
    </item>
    <item>
      <title>Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226099#M78333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AMIGO PUEDES CREAR UNA NUEVA COLUMNA ALTER_COLUMN&lt;/P&gt;&lt;P&gt;TU SABES COMO PUEDO CAMBIAR EL TIPO DE DATO DE BINARY A CARATER DESDE LA CARGA TE LO AGRADEZCO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Feb 2011 15:46:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226099#M78333</guid>
      <dc:creator />
      <dc:date>2011-02-22T15:46:07Z</dc:date>
    </item>
    <item>
      <title>AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226100#M78334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TU ME PUEDES AYUDAR HELP&lt;/P&gt;&lt;P&gt;COMO CAMBIO UN TIPO DE DATO EN UN CAMPO DESDE LA CARGA&lt;/P&gt;&lt;P&gt;DE BINARY A CARACTER&lt;/P&gt;&lt;P&gt;GRACIAS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Feb 2011 15:47:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226100#M78334</guid>
      <dc:creator />
      <dc:date>2011-02-22T15:47:49Z</dc:date>
    </item>
    <item>
      <title>AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226101#M78335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;That helped. I actually have two questions&lt;/P&gt;&lt;P&gt;1) If the data has already been loaded, and i just need to add this month field, what would i write in the from field. If i just add Month(run_date) as my_month in the load statement, will it remove the rest of columns or they will be there.&lt;/P&gt;&lt;P&gt;2) If i include all the fields in the select statement, then can i just include one field in the load statement where i want to manipulate only one field, or do i still have to include all the fields from the select field, even if the manipulation has to be on a single field. I will need all the fields in my charts though&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-br&lt;/P&gt;&lt;P&gt;Syed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Feb 2011 16:13:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226101#M78335</guid>
      <dc:creator />
      <dc:date>2011-02-22T16:13:51Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226102#M78336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Syed,&lt;/P&gt;&lt;P&gt;of course you need to have all fields in your LOAD statement which you may use later on. To simplify that, you can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;Month(Run_Date) AS Run_Date_Month&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If data was loaded before you can use the Month() function in your calculations, but you should avoid such live calculations and prefer to put as many of them as possible into your load script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Florian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Feb 2011 16:18:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226102#M78336</guid>
      <dc:creator />
      <dc:date>2011-02-22T16:18:04Z</dc:date>
    </item>
    <item>
      <title>AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226103#M78337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;answering your questions:&lt;/P&gt;&lt;P&gt;1) If the data has already been loaded, and i just need to add this month field, what would i write in the from field. If i just add Month(run_date) as my_month in the load statement, will it remove the rest of columns or they will be there.&lt;/P&gt;&lt;P&gt;If you already load the table and want to add the my_month field in another load statement you can use join:&lt;/P&gt;&lt;P&gt;test:&lt;BR /&gt;LOAD field1,&lt;BR /&gt; field2,&lt;BR /&gt; field3,&lt;BR /&gt; Run_Date&lt;BR /&gt;FROM table1;&lt;BR /&gt;left join&lt;BR /&gt;load Run_Date,&lt;BR /&gt; month(Run_Date) as my_month&lt;BR /&gt;resident test;&lt;/P&gt;&lt;P&gt;2) If i include all the fields in the select statement, then can i just include one field in the load statement where i want to manipulate only one field, or do i still have to include all the fields from the select field, even if the manipulation has to be on a single field. I will need all the fields in my charts though&lt;/P&gt;&lt;P&gt;If you want all the fields and manipulate just one, Florian already gave you the answer:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;BR /&gt; Month(Run_Date) AS Run_Date_Month&lt;BR /&gt;FROM ...&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Feb 2011 16:58:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226103#M78337</guid>
      <dc:creator />
      <dc:date>2011-02-22T16:58:26Z</dc:date>
    </item>
    <item>
      <title>AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226104#M78338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great. Its clear now. Thanks Florian, Thanks Gabriela. That helped a lot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Yes" src="http://community.qlik.com/emoticons/emotion-21.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 09:04:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226104#M78338</guid>
      <dc:creator />
      <dc:date>2011-02-23T09:04:00Z</dc:date>
    </item>
    <item>
      <title>AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226105#M78339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have another problem. My Project file name is KP.qvd. There is only one table inside my QV report and its name is V_QV_Database_Size. This table has around five fields. I want to add one field Month as i mentioned above. However, When I try the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *, Month(Run_Date)&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;(KP.qvw)[table is V_QV_Database_Size]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it gives an error message that field &amp;lt;Run_Date&amp;gt; does not exist. When i just use the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;[KP.qvw](table is V_QV_Database_Size), it loads only a single field with grabage data inside it. The report that i currently have has correct data and is working quite fine. I have checked inside the table viewer and everything is there. All fields are there in this table. Any idea where am I making the mistake?&lt;/P&gt;&lt;P&gt;Arif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 10:33:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226105#M78339</guid>
      <dc:creator />
      <dc:date>2011-02-23T10:33:26Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226106#M78340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arif,&lt;/P&gt;&lt;P&gt;you're missing the alias. It must be:&lt;/P&gt;&lt;P&gt;LOAD *, Month(Run_Date) &lt;B&gt;&lt;I&gt;AS Run_Date_Month&lt;/I&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;FROM...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Florian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 10:40:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226106#M78340</guid>
      <dc:creator />
      <dc:date>2011-02-23T10:40:29Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226107#M78341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but even that does not work. I get the error that is attached in the image. It still says &amp;lt;Run_Date&amp;gt; does not exist&lt;/P&gt;&lt;P&gt;Arif&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/8461.loaderror.JPG"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/8461.loaderror.JPG" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 10:48:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226107#M78341</guid>
      <dc:creator />
      <dc:date>2011-02-23T10:48:50Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226108#M78342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As you can see in the attached image, all the fields exist there&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/0066.Tableviewer.JPG"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/0066.Tableviewer.JPG" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Arif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 10:51:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226108#M78342</guid>
      <dc:creator />
      <dc:date>2011-02-23T10:51:32Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226109#M78343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arif,&lt;/P&gt;&lt;P&gt;that is weird. Would you mind to post your QVD file?&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Florian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 11:01:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226109#M78343</guid>
      <dc:creator />
      <dc:date>2011-02-23T11:01:51Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226110#M78344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure,&lt;/P&gt;&lt;P&gt;I have attached the qvw file. Kindly check it. Also if you go to slider, and see the sort tab, the expression is disabled. Could you please see why can't i sort the slider by expression&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arif&lt;/P&gt;&lt;P&gt;&lt;A&gt;file:///C:/Documents%20and%20Settings/uarif/Desktop/KP_Test.qvw&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 11:22:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226110#M78344</guid>
      <dc:creator />
      <dc:date>2011-02-23T11:22:41Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226111#M78345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ohh sorry, how do i post a file here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 11:23:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226111#M78345</guid>
      <dc:creator />
      <dc:date>2011-02-23T11:23:19Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Re: AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226112#M78346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Arif,&lt;/P&gt;&lt;P&gt;use the reply option (not fast reply!) and go to tab "Options". There is a dialog to upload a file.&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Florian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 11:30:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226112#M78346</guid>
      <dc:creator />
      <dc:date>2011-02-23T11:30:00Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226113#M78347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay thanks&lt;/P&gt;&lt;P&gt;Here you go&lt;/P&gt;&lt;P&gt;Arif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 11:34:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226113#M78347</guid>
      <dc:creator />
      <dc:date>2011-02-23T11:34:27Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Re: AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226114#M78348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arif,&lt;/P&gt;&lt;P&gt;I can't work with that one, as I don't have the ODBC connection to your source. I thought about the QVD file spoke about earlier.&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Florian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 13:42:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226114#M78348</guid>
      <dc:creator />
      <dc:date>2011-02-23T13:42:00Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Re: AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226115#M78349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought it will have data when you load it into your QV because i had loaded the data into it. does it generate a seperate file for data? i can only see one file there which i uploaded. i thought it stores the data in the same file.&lt;/P&gt;&lt;P&gt;I used odbc to load the data first time, but i thought you wont need the odbc connection again. I thought we can just write a load script there to play with the data that is already in the file. Am i missing something?&lt;/P&gt;&lt;P&gt;and thanks a lot for giving me soo much help&lt;/P&gt;&lt;P&gt;Arif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 13:47:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226115#M78349</guid>
      <dc:creator />
      <dc:date>2011-02-23T13:47:19Z</dc:date>
    </item>
    <item>
      <title>AW:Re: AW:Re: AW:Re: AW:Re: AW:Manipulate a field in existing data</title>
      <link>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226116#M78350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arif,&lt;/P&gt;&lt;P&gt;no, if you want to test a load script, you need a data connection which won't be working for me in this case. You can't do a regular load from a QVW file, only from QVDs.&lt;/P&gt;&lt;P&gt;Anyway I checked the field name in your script and saw it is all lower case. Although it is a Win system, QlikView works case sensitivie, so maybe you need to type "run_date" instead of "Run_Date".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Florian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Feb 2011 13:57:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Manipulate-a-field-in-existing-data/m-p/226116#M78350</guid>
      <dc:creator />
      <dc:date>2011-02-23T13:57:54Z</dc:date>
    </item>
  </channel>
</rss>

