<?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 CSV delimiters in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128105#M758968</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a lot os csv files to upload to qlikview but some of then are delimited by comma and other are delimited by semicolon.&lt;/P&gt;&lt;P&gt;They are at the same &lt;SPAN lang="en"&gt;directory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;How can I deal with this problem to load all of then once?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>rafatashiro</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>CSV delimiters</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128105#M758968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a lot os csv files to upload to qlikview but some of then are delimited by comma and other are delimited by semicolon.&lt;/P&gt;&lt;P&gt;They are at the same &lt;SPAN lang="en"&gt;directory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;How can I deal with this problem to load all of then once?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128105#M758968</guid>
      <dc:creator>rafatashiro</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: CSV delimiters</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128106#M758969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For csv use separator ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and for semicolon use separator ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 11:07:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128106#M758969</guid>
      <dc:creator>arvind1494</dc:creator>
      <dc:date>2018-08-28T11:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: CSV delimiters</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128107#M758970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Uder tab Delimiter options for coma,semicolon.tab,space,are available&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use which one do you want and then load the files.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 11:12:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128107#M758970</guid>
      <dc:creator>arvind1494</dc:creator>
      <dc:date>2018-08-28T11:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: CSV delimiters</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128108#M758971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that in the same directory I have some csv with ';' delimiter and other csv with ',' delimiter.&lt;/P&gt;&lt;P&gt;My doubt is if I can choose both of then to load once in qv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 11:18:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128108#M758971</guid>
      <dc:creator>rafatashiro</dc:creator>
      <dc:date>2018-08-28T11:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: CSV delimiters</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128109#M758972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you can load the first row of each file and determine the separator from that before loading the complete file. Something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each vFile in filelist('c:\Test\*.csv')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Header:&lt;/P&gt;&lt;P&gt;First 1&lt;/P&gt;&lt;P&gt;LOAD [@1:n] as Header&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[$(vFile)]&lt;/P&gt;&lt;P&gt;(fix, codepage is 1252);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let Sep=Left(KeepChar(Peek('Header',0),',;'),1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * FROM&lt;/P&gt;&lt;P&gt;[$(vFile)]&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is '$(Sep)', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table Header;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next vFile;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 12:22:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128109#M758972</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2018-08-28T12:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: CSV delimiters</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128110#M758973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It worked perfectly.&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 13:16:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-delimiters/m-p/128110#M758973</guid>
      <dc:creator>rafatashiro</dc:creator>
      <dc:date>2018-08-28T13:16:13Z</dc:date>
    </item>
  </channel>
</rss>

