<?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: Text file into Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365200#M702302</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a sample app with what I currently see. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want them all in one table. Plus april seems to be doing something funky.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Swuehl, where are you when I need you!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jul 2012 17:23:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-24T17:23:54Z</dc:date>
    <item>
      <title>Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365192#M702290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the following text files that I need to bring into a qvw. I wasn't sure how to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The format of them is the same and I will be getting a new one every month which means this will have to take from all files with, say, CICS* in the name so I don't have to import the new one every month. All I want to have to do is put the new file in the folder with all of these files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need the "DATE", "# of T/XS" and "AVG RSP" column. The last column can be calculated if need be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't need the Totals either. Those can be calculated. Just the raw data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 13:01:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365192#M702290</guid>
      <dc:creator />
      <dc:date>2012-07-24T13:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365193#M702291</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;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD @1 as DATE, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @2 as [# of T/XS], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @3 as [AVG RESP] &lt;/P&gt;&lt;P&gt;FROM &lt;C&gt; (txt, codepage is 1250, explicit labels, delimiter is spaces, msq, header is 2 lines) &lt;STRONG&gt;where isnum(@2)&lt;/STRONG&gt;;&lt;/C&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 13:41:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365193#M702291</guid>
      <dc:creator />
      <dc:date>2012-07-24T13:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365194#M702292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you explain how you got this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 15:05:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365194#M702292</guid>
      <dc:creator />
      <dc:date>2012-07-24T15:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365195#M702293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using qv script wizard (+ some individual modification)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit script ---&amp;gt; table files ---&amp;gt; (choose your file xls,txt, etc) i choose &lt;STRONG&gt;delimited&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then finish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;final script i modified by marking file names by&lt;STRONG&gt; * (star)&lt;/STRONG&gt; and i add &lt;STRONG&gt;where clause&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;@1,@2,@3.&lt;/STRONG&gt;...etc are the column names if you &lt;STRONG&gt;don't want to get embded lebels&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 15:12:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365195#M702293</guid>
      <dc:creator />
      <dc:date>2012-07-24T15:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365196#M702294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can I join these all together?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 15:16:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365196#M702294</guid>
      <dc:creator />
      <dc:date>2012-07-24T15:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365197#M702296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;now i gonna ask you &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what you mean by: join these all together?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 15:31:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365197#M702296</guid>
      <dc:creator />
      <dc:date>2012-07-24T15:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365198#M702298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like when you use a Left Join or contatenate to bring all the data into one table instead of having it be in separate tables. Right now each file ends up being in its own table. I want it all in one so I can call, for example, "DATE" field and get all the dates.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 15:38:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365198#M702298</guid>
      <dc:creator />
      <dc:date>2012-07-24T15:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365199#M702300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at the sample picture. I noticed another problem. Why is April not coming in correctly like the others?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But to my other question, I want them to all appear in one table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 15:49:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365199#M702300</guid>
      <dc:creator />
      <dc:date>2012-07-24T15:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365200#M702302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a sample app with what I currently see. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want them all in one table. Plus april seems to be doing something funky.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Swuehl, where are you when I need you!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 17:23:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365200#M702302</guid>
      <dc:creator />
      <dc:date>2012-07-24T17:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Text file into Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365201#M702304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;//Qualify *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;--- you dont need this here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F1 help:D&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1&gt;&lt;A name="kanchor940"&gt;&lt;/A&gt;Qualify&lt;/H1&gt;&lt;P&gt;The automatic join between fields with the same name in different tables &lt;STRONG&gt;can be suspended&lt;/STRONG&gt; by means of the &lt;SPAN class="Bold"&gt;qualify&lt;/SPAN&gt; statement, which qualifies the field name with its table name.&lt;STRONG&gt; If qualified, the field name(s) will be renamed when found in a table. The new name will be in the form of &lt;SPAN style="font-style: italic;"&gt;tablename.fieldname&lt;/SPAN&gt;&lt;/STRONG&gt;. &lt;SPAN style="font-style: italic;"&gt;Tablename&lt;/SPAN&gt; is equivalent to the label of the current table, or, if no label exists, to the name appearing after &lt;SPAN class="Bold"&gt;from&lt;/SPAN&gt; in &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; and &lt;SPAN class="Bold"&gt;select&lt;/SPAN&gt; statements. &lt;/P&gt;&lt;P&gt;Qualification is always turned off by default at the beginning of script execution. Qualification of a field name can be turned on at any time using a &lt;SPAN class="Bold"&gt;qualify&lt;/SPAN&gt; statement. Qualification can be turned off at any time using an &lt;SPAN class="Bold"&gt;unqualify&lt;/SPAN&gt; statement. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jul 2012 19:52:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-file-into-Qlikview/m-p/365201#M702304</guid>
      <dc:creator />
      <dc:date>2012-07-24T19:52:18Z</dc:date>
    </item>
  </channel>
</rss>

