<?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: How to add double quotes in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925047#M950811</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sidneylu,&lt;BR /&gt;please try the following approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TabletoExport:&lt;BR /&gt;&lt;STRONG style="color: #ff0000;"&gt;LOAD MyFirstName &amp;amp; ',' &amp;amp; MyLastName &amp;amp; ',' &amp;amp; MyAddress as mystring;&lt;/STRONG&gt;&lt;BR /&gt;LOAD &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chr(34) &amp;amp; [First Name] &amp;amp; chr(34) as MyFirstName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chr(34) &amp;amp; [Last Name] &amp;amp; chr(34) as MyLastName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chr(34) &amp;amp; [Address] &amp;amp; chr(34) as MyAddress&lt;BR /&gt;FROM&lt;BR /&gt;PEOPLE.csv&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P&gt;store * from TabletoExport into Myexport.csv (txt);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;BR /&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Dec 2015 11:41:23 GMT</pubDate>
    <dc:creator>anlonghi2</dc:creator>
    <dc:date>2015-12-02T11:41:23Z</dc:date>
    <item>
      <title>How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925028#M950792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know how to read a QVD and export it to a CSV.&amp;nbsp; But how would I go about adding double quotes to my&lt;/P&gt;&lt;P&gt;field data?&amp;nbsp; For example, say my QVD contains 3 columns.&amp;nbsp; First name, last name and street.&amp;nbsp; I want the content of&lt;/P&gt;&lt;P&gt;my CSV file to look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"JOHN", "DOE", "123 ABC STREET"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2015 18:49:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925028#M950792</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-30T18:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925029#M950793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the below example, I used chr(34):&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/107660_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;And here is the data model:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/107661_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2015 18:57:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925029#M950793</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2015-11-30T18:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925030#M950794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I used the chr(34) to surround the date field, it produced this format in my CSV which isn't what I wanted:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"""7/6/2011 12:00:00 AM"""&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only want to surround the data value with double quotes.&amp;nbsp; How can I fix this?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2015 21:00:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925030#M950794</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-30T21:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925031#M950795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post a sample data-set here? Because you shouldn't be having this issue unless there are already double quotes in this field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2015 21:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925031#M950795</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2015-11-30T21:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925032#M950796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's a screenshot of the first two columns in my QVD file.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Add_Quotes.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/107722_Add_Quotes.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;As you can see, there are no quotes.&amp;nbsp; I can produce a CSV as the way it is.&amp;nbsp; I just needed to surround each&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;column with the double quotes.&amp;nbsp; Thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 13:32:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925032#M950796</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-01T13:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925033#M950797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here are the two lines of code in my load statement which produces the output shown in the screenshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chr(34) &amp;amp; Timestamp(TransactionPostDate) &amp;amp; chr(34) as 'TransactionPostDate2',&lt;/P&gt;&lt;P&gt;Date(TransactionPostDate) as 'TransactionPostDate',&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Add_Quotes 2.jpg" class="jive-image image-1" src="/legacyfs/online/107737_Add_Quotes 2.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 13:47:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925033#M950797</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-01T13:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925034#M950798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even when I tried this, I got six double quotes.&amp;nbsp; Is there some type of global setting that I need to look at?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;chr(34) &amp;amp; 'Test' &amp;amp; chr(34) as 'Col1'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"""Test"""&lt;/P&gt;&lt;P&gt;"""Test"""&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 16:22:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925034#M950798</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-01T16:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925035#M950799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another question is how does your store function look like to export to csv?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been using the below and never had this problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt;Store&lt;/STRONG&gt; Test &lt;SPAN style="color: #0000ff;"&gt;into&lt;/SPAN&gt; 'C:/Desktop/Text.csv'(&lt;STRONG style=": ; color: #0000ff;"&gt;txt&lt;/STRONG&gt;);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 16:56:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925035#M950799</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2015-12-01T16:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925036#M950800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably. I think the best way to find out is looking at you app so if you could attach your qvw, it would be better.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 18:18:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925036#M950800</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2015-12-01T18:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925037#M950801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your text delimiter is "" ie "Test" in the source file so you may need to change that in the load script if you are loading the data from a csv or excel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 18:21:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925037#M950801</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2015-12-01T18:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925038#M950802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the same syntax as yours.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 18:22:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925038#M950802</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-01T18:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925039#M950803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you actually post your app? Because your screenshots may not reflect the true state of your problem. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 20:49:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925039#M950803</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2015-12-01T20:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925040#M950804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sidneylu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try using&lt;/P&gt;&lt;P&gt;chr(96) &amp;amp; chr(34) &amp;amp; Timestamp(TransactionPostDate) &amp;amp; chr(34) as 'TransactionPostDate2',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 21:26:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925040#M950804</guid>
      <dc:creator>anlonghi2</dc:creator>
      <dc:date>2015-12-01T21:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925041#M950805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andrea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It did not work.&amp;nbsp; It produced this format with a single tick on the "left".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"`""7/1/2011 12:00:00 AM"""&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 22:34:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925041#M950805</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-01T22:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925042#M950806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sidneylu,&lt;/P&gt;&lt;P&gt;wich version of excel do you have ?&lt;/P&gt;&lt;P&gt;Are you sure that in the excel is not defined a macro that changes the content of a cell ?&lt;/P&gt;&lt;P&gt;something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Public Sub QuoteWrap()&lt;/P&gt;&lt;P&gt; Const q = """" 'double the double quotes&lt;/P&gt;&lt;P&gt; Dim ws As Worksheet&lt;/P&gt;&lt;P&gt; Dim rCell As Range&lt;/P&gt;&lt;P&gt; For Each ws In ActiveWorkbook.Worksheets&lt;/P&gt;&lt;P&gt; For Each rCell In ws.UsedRange&lt;/P&gt;&lt;P&gt; If Not IsEmpty(rCell) Then _&lt;/P&gt;&lt;P&gt; rCell.Value = q &amp;amp; rCell.Value &amp;amp; q&lt;/P&gt;&lt;P&gt; Next rCell&lt;/P&gt;&lt;P&gt; Next ws&lt;/P&gt;&lt;P&gt; End Sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 23:23:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925042#M950806</guid>
      <dc:creator>anlonghi2</dc:creator>
      <dc:date>2015-12-01T23:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925043#M950807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi anlonghi2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excel is not involved. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm simply loading a QVD file and storing it in a CSV file.&amp;nbsp; After the CSV file is generated, I open it with&lt;/P&gt;&lt;P&gt;TextPad which is just a text editor to see the content as you can see from the screenshot I posted earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is really strange.&amp;nbsp; Is there any setting I need to look?&amp;nbsp; I am new to Qlikivew.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 01:13:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925043#M950807</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-02T01:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925044#M950808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just created this at home.&amp;nbsp; I'm experiencing the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone use the below, try it and post your result?&amp;nbsp;&amp;nbsp; I'd be curious to find out.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;contact:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;chr(34) &amp;amp; fname &amp;amp; chr(34) as 'fname1',&lt;/P&gt;&lt;P&gt;&amp;nbsp; fname, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lname&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;C:\Qlikview\Test.txt&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P&gt;store contact into C:\Qlikview\contact.csv (txt);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Test.txt&lt;/P&gt;&lt;P&gt;fname,lname&lt;/P&gt;&lt;P&gt;john,doe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//contact.csv&lt;/P&gt;&lt;P&gt;fname1,fname,lname&lt;/P&gt;&lt;P&gt;"""john""",john,doe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 01:40:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925044#M950808</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-02T01:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925045#M950809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The store statement only generates quotes when the data contains something (like quotes) that should be quoted according to the MSQ quoting rules. So when you&amp;nbsp; include the dquotes in your data, you trigger the quotes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your data is seen as not needing quotes, they don't get generated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's been a long standing request to have more control over output options in the Store statement. I feel your pain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 03:13:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925045#M950809</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-12-02T03:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925046#M950810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no easy way to do this - QV is not designed as a data export&amp;nbsp; tool, so although you can set the field delimiter, the txt/csv export is only done with standard quoting - fields that do not include the delimiter, or quote marks are not quoted, field values that contain the delimiter or quotes are quoted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The easiest way is to do this in post processing with a text processing tool like sed (available as part of the GnuWin32 tool set), or with a powershell script. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 05:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925046#M950810</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-12-02T05:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to add double quotes</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925047#M950811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sidneylu,&lt;BR /&gt;please try the following approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TabletoExport:&lt;BR /&gt;&lt;STRONG style="color: #ff0000;"&gt;LOAD MyFirstName &amp;amp; ',' &amp;amp; MyLastName &amp;amp; ',' &amp;amp; MyAddress as mystring;&lt;/STRONG&gt;&lt;BR /&gt;LOAD &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chr(34) &amp;amp; [First Name] &amp;amp; chr(34) as MyFirstName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chr(34) &amp;amp; [Last Name] &amp;amp; chr(34) as MyLastName,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chr(34) &amp;amp; [Address] &amp;amp; chr(34) as MyAddress&lt;BR /&gt;FROM&lt;BR /&gt;PEOPLE.csv&lt;BR /&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P&gt;store * from TabletoExport into Myexport.csv (txt);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;BR /&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2015 11:41:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-double-quotes/m-p/925047#M950811</guid>
      <dc:creator>anlonghi2</dc:creator>
      <dc:date>2015-12-02T11:41:23Z</dc:date>
    </item>
  </channel>
</rss>

