<?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 Creating tables in Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189742#M52509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;Please, I would like to create a table by copying another table. Keeping the same structure and the same data.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Here is the script to create my table:&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Bilan_Actif:&lt;BR /&gt;LOAD CodeLigne,&lt;BR /&gt; Money (SUM( if( (TypeCompte='B' and Annee = '2010' and (IsNull(CodeLigne)=0) ), MontantDebit) ), '# ##0,00;-# ##0,00') as brutn,&lt;BR /&gt; Money (SUM( if( (TypeCompte='B' and Annee = '2009' and (IsNull(CodeLigne)=0) ), MontantDebit) ), '# ##0,00;-# ##0,00' ) as brutnm,&lt;BR /&gt; Money (SUM( if( (TypeCompte='A' and Annee = '2010' and (IsNull(CodeLigne)=0) ), MontantCredit) ), '# ##0,00;-# ##0,00' ) as amorn,&lt;BR /&gt; Money (SUM( if( (TypeCompte='A' and Annee = '2009' and (IsNull(CodeLigne)=0) ), MontantDebit) ), '# ##0,00;-# ##0,00' ) as amornm&lt;BR /&gt;RESIDENT Balance&lt;BR /&gt;GROUP BY CodeLigne;&lt;BR /&gt; LEFT JOIN LOAD CodeLigne,&lt;BR /&gt; LibelleLigne,&lt;BR /&gt; NoLT&lt;BR /&gt;RESIDENT Ligne;&lt;/P&gt;&lt;P&gt;It's OK.&lt;/P&gt;&lt;P&gt;I would like to create another table named &lt;B&gt;Bilan_Actif_Bis&lt;/B&gt; that has different field names, but keeps the same data as the other table &lt;B&gt;Bilan_Actif&lt;/B&gt;.&lt;/P&gt;&lt;P&gt;Thanks you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Sep 2010 08:08:45 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-09-06T08:08:45Z</dc:date>
    <item>
      <title>Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189742#M52509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;Please, I would like to create a table by copying another table. Keeping the same structure and the same data.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Here is the script to create my table:&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Bilan_Actif:&lt;BR /&gt;LOAD CodeLigne,&lt;BR /&gt; Money (SUM( if( (TypeCompte='B' and Annee = '2010' and (IsNull(CodeLigne)=0) ), MontantDebit) ), '# ##0,00;-# ##0,00') as brutn,&lt;BR /&gt; Money (SUM( if( (TypeCompte='B' and Annee = '2009' and (IsNull(CodeLigne)=0) ), MontantDebit) ), '# ##0,00;-# ##0,00' ) as brutnm,&lt;BR /&gt; Money (SUM( if( (TypeCompte='A' and Annee = '2010' and (IsNull(CodeLigne)=0) ), MontantCredit) ), '# ##0,00;-# ##0,00' ) as amorn,&lt;BR /&gt; Money (SUM( if( (TypeCompte='A' and Annee = '2009' and (IsNull(CodeLigne)=0) ), MontantDebit) ), '# ##0,00;-# ##0,00' ) as amornm&lt;BR /&gt;RESIDENT Balance&lt;BR /&gt;GROUP BY CodeLigne;&lt;BR /&gt; LEFT JOIN LOAD CodeLigne,&lt;BR /&gt; LibelleLigne,&lt;BR /&gt; NoLT&lt;BR /&gt;RESIDENT Ligne;&lt;/P&gt;&lt;P&gt;It's OK.&lt;/P&gt;&lt;P&gt;I would like to create another table named &lt;B&gt;Bilan_Actif_Bis&lt;/B&gt; that has different field names, but keeps the same data as the other table &lt;B&gt;Bilan_Actif&lt;/B&gt;.&lt;/P&gt;&lt;P&gt;Thanks you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 08:08:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189742#M52509</guid>
      <dc:creator />
      <dc:date>2010-09-06T08:08:45Z</dc:date>
    </item>
    <item>
      <title>Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189743#M52510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Yimen,&lt;/P&gt;&lt;P&gt;I'd suggest you to rename fields from a resident load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Bilan_Actif_Bis:LOAD CodeLigne AS Codeligne_Bis, brutn as brutn_bis... RESIDENT Bilan_Acttif&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Another possibility is to qualify your new table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;QUALIFY *; LOAD * RESIDENT Bilan_Actif; UNQUALIFY *;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Anyway, I'd use the first one.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 08:16:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189743#M52510</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-06T08:16:13Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189744#M52511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, i don't hear very well.&lt;/P&gt;&lt;P&gt;Can you write all the script using the script that i give above.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 08:42:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189744#M52511</guid>
      <dc:creator />
      <dc:date>2010-09-06T08:42:16Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189745#M52512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Renaming fields using "AS"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Bilan_Actif_Bis:LOAD CodeLigne as CodeLigne_Bis, brutn as brutn_Bis, brutnm as brutnm_Bis, amorn as amorn_Bis, amornm as amornm_Bis, LibelleLigne as LibelleLigne_Bis, NoLT as NoLT_BisRESIDENT Bilan_Actif;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 08:50:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189745#M52512</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-06T08:50:29Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189746#M52513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;But i want to add this field&lt;/P&gt;&lt;P style="font-weight: bold"&gt;SUM (If ( (IsNull(CodeGroupe)=0 and IsNull(CodeSousGroupe)=0 and IsNull(CodeSsSousGroupe)=-1 and IsNull(CodePere)=0 ), brutn )) AS brutNiv02&lt;/P&gt;&lt;P&gt;When i do it, an error appears :&lt;/P&gt;&lt;P&gt;Script error:&lt;/P&gt;&lt;P style="font-weight: bold"&gt;brutNiv02,&lt;BR /&gt; Bilan_Actif_Bis:&lt;BR /&gt;LOAD CodeLigne,&lt;BR /&gt; brutn AS brutn_Bis,&lt;BR /&gt; brutnm AS brutnm_Bis,&lt;BR /&gt; amorn AS amorn_Bis,&lt;BR /&gt; amornm AS amornm_Bis,&lt;BR /&gt; LibelleLigne,&lt;BR /&gt; NoLT,&lt;BR /&gt; CodeSsSousGroupe AS CodeSsSousGroupe_Bis,&lt;BR /&gt; CodeSousGroupe AS CodeSousGroupe_Bis,&lt;BR /&gt; CodeGroupe AS CodeGroupe_Bis,&lt;BR /&gt; CodePere AS CodePere_Bis,&lt;BR /&gt; SUM (If ( (IsNull(CodeGroupe)=0 and IsNull(CodeSousGroupe)=0 and IsNull(CodeSsSousGroupe)=-1 and IsNull(CodePere)=0 ), brutn )) AS brutNiv02&lt;BR /&gt;&lt;BR /&gt;RESIDENT Bilan_Actif&lt;/P&gt;&lt;P&gt;I don't know the problem please it's very urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 10:19:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189746#M52513</guid>
      <dc:creator />
      <dc:date>2010-09-06T10:19:45Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189747#M52514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Yimen,&lt;/P&gt;&lt;P&gt;This seems to be your mispelling:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;SUM (If ( (NOT IsNull(CodeGroupe) and NOT IsNull(CodeSousGroupe) and IsNull(CodeSsSousGroupe) and NOT IsNull(CodePere)), brutn )) AS brutNiv02&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;IsNull() returns true or false itself, so there's no need to compare. Besides, if you are using a SUM on your script, you have to use GROUP BY clause to get it loaded correctly.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 10:49:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189747#M52514</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-06T10:49:32Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189748#M52515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes&lt;/P&gt;&lt;P&gt;I apply what you says as:&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Bilan_Actif_Bis:&lt;BR /&gt;LOAD CodeLigne,&lt;BR /&gt; brutn AS brutn_Bis,&lt;BR /&gt; brutnm AS brutnm_Bis,&lt;BR /&gt; amorn AS amorn_Bis,&lt;BR /&gt; amornm AS amornm_Bis,&lt;BR /&gt; LibelleLigne,&lt;BR /&gt; NoLT,&lt;BR /&gt; CodeSsSousGroupe AS CodeSsSousGroupe_Bis,&lt;BR /&gt; CodeSousGroupe AS CodeSousGroupe_Bis,&lt;BR /&gt; CodeGroupe AS CodeGroupe_Bis,&lt;BR /&gt; CodePere AS CodePere_Bis,&lt;BR /&gt; SUM (If ( (Not IsNull(CodeGroupe) and Not IsNull(CodeSousGroupe) and IsNull(CodeSsSousGroupe) and Not IsNull(CodePere)=0 ), brutn )) AS brutNiv02&lt;BR /&gt; RESIDENT Bilan_Actif&lt;BR /&gt;GROUP BY CodeLigne;&lt;/P&gt;&lt;P&gt;But the error message always appears:&lt;/P&gt;&lt;P style="font-weight: bold"&gt;brutNiv02,&lt;BR /&gt;Bilan_Actif_Bis:&lt;BR /&gt;LOAD CodeLigne,&lt;BR /&gt; brutn AS brutn_Bis,&lt;BR /&gt; brutnm AS brutnm_Bis,&lt;BR /&gt; amorn AS amorn_Bis,&lt;BR /&gt; amornm AS amornm_Bis,&lt;BR /&gt; LibelleLigne,&lt;BR /&gt; NoLT,&lt;BR /&gt; CodeSsSousGroupe AS CodeSsSousGroupe_Bis,&lt;BR /&gt; CodeSousGroupe AS CodeSousGroupe_Bis,&lt;BR /&gt; CodeGroupe AS CodeGroupe_Bis,&lt;BR /&gt; CodePere AS CodePere_Bis,&lt;BR /&gt; SUM (If ( (Not IsNull(CodeGroupe) and Not IsNull(CodeSousGroupe) and IsNull(CodeSsSousGroupe) and Not IsNull(CodePere)=0 ), brutn )) AS brutNiv02&lt;BR /&gt; RESIDENT Bilan_Actif&lt;BR /&gt;GROUP BY CodeLigne&lt;/P&gt;&lt;P&gt;Please it's urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 11:17:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189748#M52515</guid>
      <dc:creator />
      <dc:date>2010-09-06T11:17:33Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189749#M52516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Yimen,&lt;/P&gt;&lt;P&gt;You still have a Isnull() = 0 in your code. Check the code in bold in your script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;SUM (If ( (Not IsNull(CodeGroupe) and Not IsNull(CodeSousGroupe) and IsNull(CodeSsSousGroupe) and &lt;B&gt;Not IsNull(CodePere)&lt;/B&gt; ), brutn ))&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 11:45:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189749#M52516</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-06T11:45:37Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189750#M52517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have removed " =0" but the error message always appears.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 14:33:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189750#M52517</guid>
      <dc:creator />
      <dc:date>2010-09-06T14:33:32Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189751#M52518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yimen,&lt;/P&gt;&lt;P&gt;I see that you have a group by clause. You have to add all your fields except for the one you are aggregating to the group by.&lt;/P&gt;&lt;P&gt;What error is displaying?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 15:09:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189751#M52518</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-06T15:09:10Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Re: Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189752#M52519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When i launche the reloading, the script error box dialog displays with the following message:&lt;/P&gt;&lt;P style="font-weight: bold"&gt;brutNiv02,&lt;BR /&gt; Bilan_Actif_Bis:&lt;BR /&gt;LOAD CodeLigne,&lt;BR /&gt; brutn AS brutn_Bis,&lt;BR /&gt; brutnm AS brutnm_Bis,&lt;BR /&gt; amorn AS amorn_Bis,&lt;BR /&gt; amornm AS amornm_Bis,&lt;BR /&gt; LibelleLigne,&lt;BR /&gt; NoLT,&lt;BR /&gt; CodeSsSousGroupe AS CodeSsSousGroupe_Bis,&lt;BR /&gt; CodeSousGroupe AS CodeSousGroupe_Bis,&lt;BR /&gt; CodeGroupe AS CodeGroupe_Bis,&lt;BR /&gt; CodePere AS CodePere_Bis,&lt;BR /&gt; SUM (If ( (Not IsNull(CodeGroupe) and Not IsNull(CodeSousGroupe) and IsNull(CodeSsSousGroupe) and Not IsNull(CodePere) ), brutn )) AS brutNiv02&lt;BR /&gt; RESIDENT Bilan_Actif&lt;BR /&gt;GROUP BY CodeLigne&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 18:55:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189752#M52519</guid>
      <dc:creator />
      <dc:date>2010-09-06T18:55:18Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Re: Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189753#M52520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Rename&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;LibelleLigne AS LibelleLigne_Bis, NoLT AS NoLT_Bis&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Apart from that and to add all fields to the group by clause, will probably make clear where the problem is, as if you just set&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;1 AS brutNiv02&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;just for testing should get no errors loading.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 21:46:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189753#M52520</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-06T21:46:04Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Re: Re. :Re: Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189754#M52521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When i use:&lt;/P&gt;&lt;P&gt;1 AS brutNiv02&lt;/P&gt;&lt;P&gt;Everythings goes well&lt;/P&gt;&lt;P&gt;But i want to use this SUM aggregation.&lt;/P&gt;&lt;P&gt;I don't know really what is the problem.&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 08:24:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189754#M52521</guid>
      <dc:creator />
      <dc:date>2010-09-07T08:24:45Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Re: Re. :Re: Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189755#M52522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Yimen,&lt;/P&gt;&lt;P&gt;I'm sorry to insist, but I still think the problem is that you need to group by all fields except for the new one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Bilan_Actif_Bis:LOAD CodeLigne AS CodeLigne_Bis, brutn AS brutn_Bis, brutnm AS brutnm_Bis, amorn AS amorn_Bis, amornm AS amornm_Bis, LibelleLigne AS LibelleLigne_Bis, NoLT AS NoLT_Bis, CodeSsSousGroupe AS CodeSsSousGroupe_Bis, CodeSousGroupe AS CodeSousGroupe_Bis, CodeGroupe AS CodeGroupe_Bis, CodePere AS CodePere_Bis, SUM (If((Not IsNull(CodeGroupe) and Not IsNull(CodeSousGroupe) and IsNull(CodeSsSousGroupe) and Not IsNull(CodePere)), brutn)) AS brutNiv02RESIDENT Bilan_ActifGROUP BY CodeLigne, brutn, brutnm, amorn, amornm, LibelleLigne, NoLT, CodeSsSousGroupe, CodeSousGroupe, CodeGroupe, CodePere&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Note that SUM in this case will only return the same value of brutn for those records that have those Codes in the conditional, but it will not group the value for brutn for all records loaded.&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 08:56:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189755#M52522</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-09-07T08:56:50Z</dc:date>
    </item>
    <item>
      <title>Re. :Re: Re. :Re: Re. :Re: Re. :Re: Re. :Re: Re. :Re: Re. :Re: Creating tables in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189756#M52523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank MIGUEL, i have seen the problem.&lt;/P&gt;&lt;P&gt;The GROUP BY clause must have the others fields that not enter in the agregation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Sep 2010 12:16:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-tables-in-Qlikview/m-p/189756#M52523</guid>
      <dc:creator />
      <dc:date>2010-09-07T12:16:38Z</dc:date>
    </item>
  </channel>
</rss>

