<?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: Garbage after statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Garbage-after-statement/m-p/381894#M142503</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On the NSO I want that data, but where the team is CVN or OS I am changing the team to equal NSO. Will the way I am doing this actually work? I want to roll everything on CVN and OS teams up to NSO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Aug 2012 15:56:29 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-08-29T15:56:29Z</dc:date>
    <item>
      <title>Garbage after statement</title>
      <link>https://community.qlik.com/t5/QlikView/Garbage-after-statement/m-p/381892#M142501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Can anyone tell me why I am getting a Garbage after statement on the following lines in the load script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QUALIFY *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NSOProvider:&lt;/P&gt;&lt;P&gt; LOAD BreakoutProviderSideActivity.ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BreakoutProviderSideActivity.Week,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BreakoutProviderSideActivity.Employee,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BreakoutProviderSideActivity.Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if([BreakoutProviderSideActivity.Team]='CVN','NSO')&amp;nbsp; or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if([BreakoutProviderSideActivity.Team]='OS','NSO') as BreakoutProviderTeam,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [BreakoutProviderSideActivity.Days Booked]&lt;/P&gt;&lt;P&gt;RESIDENT &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BreakoutProviderSideActivity&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where [BreakoutProviderSideActivity.Team] in('CVN','OS','NSO');&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UNQUALIFY *;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2012 14:47:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Garbage-after-statement/m-p/381892#M142501</guid>
      <dc:creator />
      <dc:date>2012-08-29T14:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Garbage after statement</title>
      <link>https://community.qlik.com/t5/QlikView/Garbage-after-statement/m-p/381893#M142502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seams to me that you use the IN where clause like in SQL. In qlikview you can use the match syntax. So in your case replace:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 11.818181991577148px; background-color: #eef4f9;"&gt;Where [BreakoutProviderSideActivity.Team] in('CVN','OS','NSO');&amp;nbsp; &lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;by&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 11.818181991577148px; background-color: #eef4f9;"&gt;Where match([BreakoutProviderSideActivity.Team], 'CVN','OS','NSO');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 11.818181991577148px; background-color: #eef4f9;"&gt;you can also change your if by:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 11.818181991577148px; background-color: #eef4f9; font-family: Arial;"&gt;'NSO' as BreakoutProviderTeam&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-size: 11.818181991577148px; background-color: #eef4f9; font-family: Arial;"&gt;because you are alseady filtering 'OS' and 'CVN' in your where condition&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2012 15:38:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Garbage-after-statement/m-p/381893#M142502</guid>
      <dc:creator />
      <dc:date>2012-08-29T15:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Garbage after statement</title>
      <link>https://community.qlik.com/t5/QlikView/Garbage-after-statement/m-p/381894#M142503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On the NSO I want that data, but where the team is CVN or OS I am changing the team to equal NSO. Will the way I am doing this actually work? I want to roll everything on CVN and OS teams up to NSO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2012 15:56:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Garbage-after-statement/m-p/381894#M142503</guid>
      <dc:creator />
      <dc:date>2012-08-29T15:56:29Z</dc:date>
    </item>
  </channel>
</rss>

