<?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 Measures Groups in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342919#M126650</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; i got this error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Illegal combination of prefixes&lt;BR /&gt;RIGHT KEEP(PRODUCTOS)&lt;BR /&gt;RIGHT KEEP(FUERZA_VTAS)&lt;BR /&gt;CrossTable(Type, Value, 3)&lt;BR /&gt;FACT:&lt;BR /&gt;LOAD MakeDate(Left(Text("TIPC_ID_PERI"),4), Mid(Text("TIPC_ID_PERI"),5,2),Mid(Text("TIPC_ID_PERI"),7,2)) AS FCH,&lt;BR /&gt; "PRES_ID_PRES" AS "ID_PRES",&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;"CIUD_ID_CIUD"&amp;amp;"REPR_ID_REPR" AS "ID_FVTAS",&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;VTA_UND,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;BUD_UND,&lt;/P&gt;&lt;P&gt;VTA_MXP,&lt;/P&gt;&lt;P&gt;VTA_USD,&lt;/P&gt;&lt;P&gt;BUD_MXP,&lt;/P&gt;&lt;P&gt;BUD_USD;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT *&lt;BR /&gt; FROM "DM_AUDITORIAS"."INAU_RESU"&lt;BR /&gt; ORDER BY TIPC_ID_PERI ASC; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Jun 2012 22:40:46 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-06-07T22:40:46Z</dc:date>
    <item>
      <title>Measures Groups</title>
      <link>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342914#M126645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hello, i have a fact table with 6 measures: VTA_MXP, VTA_USD, VTA_UND, BUD_MXP, BUD_USD, BUD_UND.&lt;/P&gt;&lt;P&gt; i would like to group VTA_UND and BUD_UND in a "UNITS GROUP"&amp;nbsp; and the others in a "VALUES GROUP". &lt;/P&gt;&lt;P&gt;It is becouse in the design, i want to filter by "UNITS GROUP" OR "VALUES GROUP" and the charts change to correspondent measures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 18:17:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342914#M126645</guid>
      <dc:creator />
      <dc:date>2012-06-07T18:17:57Z</dc:date>
    </item>
    <item>
      <title>Measures Groups</title>
      <link>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342915#M126646</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;In this case you can using IF condition:&lt;/P&gt;&lt;P&gt; if((FieldName = 'VTA_UND') or (FieldName = 'BUD_UND') ),'UNITS GROUP', ’VALUES GROUP‘）&lt;/P&gt;&lt;P&gt;You can using this script in dimension or when you load the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this can help you. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 18:36:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342915#M126646</guid>
      <dc:creator />
      <dc:date>2012-06-07T18:36:10Z</dc:date>
    </item>
    <item>
      <title>Measures Groups</title>
      <link>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342916#M126647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I think Heri's answer is correct, but as an alternative maybe you can create flags in the script for Units Group and Values Group.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 19:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342916#M126647</guid>
      <dc:creator>regowins</dc:creator>
      <dc:date>2012-06-07T19:53:48Z</dc:date>
    </item>
    <item>
      <title>Measures Groups</title>
      <link>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342917#M126648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hello Heri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, but i didn´t understand where i should use the condition, it is like a variable or field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Fact is:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;RIGHT&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;KEEP&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(PRODUCTOS)&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;RIGHT&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;KEEP&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(FUERZA_VTAS)&lt;BR /&gt; FACT:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MakeDate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Left&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Text&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"TIPC_ID_PERI"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),4), &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Text&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"TIPC_ID_PERI"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),5,2),&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Text&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"TIPC_ID_PERI"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),7,2)) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FCH&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"PRES_ID_PRES"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"ID_PRES"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"CIUD_ID_CIUD"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"REPR_ID_REPR"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"ID_FVTAS"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;VTA_UND,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;BUD_UND,&lt;/P&gt;&lt;P&gt;VTA_MXP,&lt;/P&gt;&lt;P&gt;VTA_USD,&lt;/P&gt;&lt;P&gt;BUD_MXP,&lt;/P&gt;&lt;P&gt;BUD_USD;&lt;/P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT *&lt;BR /&gt; FROM "DM_AUDITORIAS"."INAU_RESU"&lt;BR /&gt; ORDER BY TIPC_ID_PERI ASC; &lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt; &lt;/P&gt;&lt;SPAN style="color: #0000ff; font-size: 1;"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 20:04:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342917#M126648</guid>
      <dc:creator />
      <dc:date>2012-06-07T20:04:10Z</dc:date>
    </item>
    <item>
      <title>Measures Groups</title>
      <link>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342918#M126649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, if your table like that, you must load your table with crosstable. Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CrossTable(Type, Value, 3)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;FACT:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MakeDate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Left&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Text&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"TIPC_ID_PERI"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),4), &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Text&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"TIPC_ID_PERI"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),5,2),&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Text&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"TIPC_ID_PERI"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),7,2)) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;FCH&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"PRES_ID_PRES"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"ID_PRES"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"CIUD_ID_CIUD"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"REPR_ID_REPR"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"ID_FVTAS"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;VTA_UND,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;BUD_UND,&lt;/P&gt;&lt;P&gt;VTA_MXP,&lt;/P&gt;&lt;P&gt;VTA_USD,&lt;/P&gt;&lt;P&gt;BUD_MXP,&lt;/P&gt;&lt;P&gt;BUD_USD;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT *&lt;BR /&gt; FROM "DM_AUDITORIAS"."INAU_RESU"&lt;BR /&gt; ORDER BY TIPC_ID_PERI ASC; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in your chart dimension, adding calculated dimension using :&lt;/P&gt;&lt;P&gt;if((Type= 'VTA_UND') or (Type= 'BUD_UND') ),'UNITS GROUP', ’VALUES GROUP‘） // 'Type' is a field name that contain grouped Field -- VTA_MXP, VTA_USD, VTA_UND, BUD_MXP, BUD_USD, BUD_UND)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in expression you can direct using your calculation. For ex: sum(Value) // 'Value' is the value of each measurment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 20:24:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342918#M126649</guid>
      <dc:creator />
      <dc:date>2012-06-07T20:24:28Z</dc:date>
    </item>
    <item>
      <title>Measures Groups</title>
      <link>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342919#M126650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; i got this error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Illegal combination of prefixes&lt;BR /&gt;RIGHT KEEP(PRODUCTOS)&lt;BR /&gt;RIGHT KEEP(FUERZA_VTAS)&lt;BR /&gt;CrossTable(Type, Value, 3)&lt;BR /&gt;FACT:&lt;BR /&gt;LOAD MakeDate(Left(Text("TIPC_ID_PERI"),4), Mid(Text("TIPC_ID_PERI"),5,2),Mid(Text("TIPC_ID_PERI"),7,2)) AS FCH,&lt;BR /&gt; "PRES_ID_PRES" AS "ID_PRES",&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;"CIUD_ID_CIUD"&amp;amp;"REPR_ID_REPR" AS "ID_FVTAS",&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;VTA_UND,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;BUD_UND,&lt;/P&gt;&lt;P&gt;VTA_MXP,&lt;/P&gt;&lt;P&gt;VTA_USD,&lt;/P&gt;&lt;P&gt;BUD_MXP,&lt;/P&gt;&lt;P&gt;BUD_USD;&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; SELECT *&lt;BR /&gt; FROM "DM_AUDITORIAS"."INAU_RESU"&lt;BR /&gt; ORDER BY TIPC_ID_PERI ASC; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2012 22:40:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342919#M126650</guid>
      <dc:creator />
      <dc:date>2012-06-07T22:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Measures Groups</title>
      <link>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342920#M126651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i created a list box with 'Units' and 'Values'&lt;/P&gt;&lt;P&gt;and i added a condicional function (IF) in the charts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 16:03:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342920#M126651</guid>
      <dc:creator />
      <dc:date>2012-06-14T16:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: Measures Groups</title>
      <link>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342921#M126652</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 to comment this lines:&lt;/P&gt;&lt;P&gt;RIGHT KEEP(PRODUCTOS)&lt;/P&gt;&lt;P&gt;RIGHT KEEP(FUERZA_VTAS)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Heri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2012 16:32:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Measures-Groups/m-p/342921#M126652</guid>
      <dc:creator />
      <dc:date>2012-06-14T16:32:06Z</dc:date>
    </item>
  </channel>
</rss>

