<?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: chart problem with dimension and expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366974#M1179124</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sebastian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Es verdad que muestra el total, pero cuando le sacas la dimensión deal_id, y solo dejas el mes, el total aparece como 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Con respecto a los calendarios tenes razón…. yo estoy con esto desde hace 3 meses nada mas y a los ponchazos, es decir, estoy aprendiendo sobre la marcha y búsquedas en los foros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cualquier sugerencia que tengas respecto a los calendarios bienvenida será.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gracias&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gerardo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De: sebastiandpereira &lt;A href="mailto:qliktech@sgaur.hosted.jivesoftware.com"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Enviado el: viernes, 23 de marzo de 2012 05:31 p.m.&lt;/P&gt;&lt;P&gt;Para: Pauza, Gerardo&lt;/P&gt;&lt;P&gt;Asunto: &lt;A href="New to QlikView"&gt;&lt;/A&gt; - Re: chart problem with dimension and expression&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;QlikCommunity &amp;lt;http://community.qlik.com/index.jspa&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: chart problem with dimension and expression &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;created by sebastiandpereira &amp;lt;http://community.qlik.com/people/sebastiandpereira&amp;gt;  in New to QlikView - View the full discussion &amp;lt;http://community.qlik.com/message/203923#203923&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Mar 2012 21:04:42 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-03-23T21:04:42Z</dc:date>
    <item>
      <title>chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366968#M1179118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i have a problem with an expression like this in a chart:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;total = DEALS.commission_percentage * sum(DEALS.discounted_price*DEAL_EXTERNALS.quantity)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the expression need to have a dimension deal.deal_id to calculate the "total", without the dimension deal.deal_id the "total" values are NULL (see attached files).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what can i do. I tried to resolve the problem using concatenate, join functions but nothing could help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEAL_EXTERNALS:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(created) &amp;amp; Num(Month(created),'00') &amp;amp; Num(Day(created),'00') as %Key_CREATED_DEAL_EXTERNALS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; deal_id as %Key_DEAL_ID,&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; deal_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; quantity&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; FROM [..\QVD\DEAL_EXTERNALS.QVD] (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEALS:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(start_date) &amp;amp; Num(Month(start_date),'00') &amp;amp; Num(Day(start_date),'00') as %Key_GENERACION_DEALS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id AS %Key_DEAL_ID,&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; discount_percentage,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id as deal_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; discounted_price&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; FROM [..\QVD\DEALS.QVD] (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for any advice&lt;/P&gt;&lt;P&gt;Gerardo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 15:01:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366968#M1179118</guid>
      <dc:creator />
      <dc:date>2012-03-23T15:01:33Z</dc:date>
    </item>
    <item>
      <title>chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366969#M1179119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Supongo que "Gerardo" entiende español!! If Not, tell me please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;El problema es que la expresión no "entiende" cómo agrupar la información de cada valor (DEAL_EXTERNALS.quantity y DEALS.discounted_price) dentro del sum y, además, cómo agrupar por DEALS.commision_percentage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Es por eso que si no informás el campo ID no puede mostrarte la información.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;En caso de que puedas modificar los datos, deberías crear una única tabla DEALS:&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;DEALS:&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;LOAD&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(created) &amp;amp; Num(Month(created),'00') &amp;amp; Num(Day(created),'00') as %Key_CREATED_DEAL_EXTERNALS,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; deal_id as %Key_DEAL_ID,&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; deal_id,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; quantity&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp; FROM [..\QVD\DEAL_EXTERNALS.QVD] (qvd); &lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;Left Join&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;LOAD&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(start_date) &amp;amp; Num(Month(start_date),'00') &amp;amp; Num(Day(start_date),'00') as %Key_GENERACION_DEALS,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id AS %Key_DEAL_ID,&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; discount_percentage,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id as deal_id,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; discounted_price&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp; FROM [..\QVD\DEALS.QVD] (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De esta manera, la expresión debería funcionar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Si no quisieras modificar el script, podrías probar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #eef4f9;"&gt;= Sum(Aggr(DEALS.commission_percentage * sum(DEALS.discounted_price*DEAL_EXTERNALS.quantity), %Key_DEAL_ID))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Por favor, decime cómo te fué&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 15:53:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366969#M1179119</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-03-23T15:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366970#M1179120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola Sebastian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Probe de hacer lo que me dijiste pero sigue sin resolver la expresión.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Y por lo que podras ver en la imagen adjunto el join pareciera estar bien armado.&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;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;Alguna otra idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gracias&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gerardo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pd.: que bueno no tener que explicar esto en ingles!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De: sebastiandpereira &lt;A href="mailto:qliktech@sgaur.hosted.jivesoftware.com"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Enviado el: viernes, 23 de marzo de 2012 12:54 p.m.&lt;/P&gt;&lt;P&gt;Para: Pauza, Gerardo&lt;/P&gt;&lt;P&gt;Asunto: &lt;A href="New to QlikView"&gt;&lt;/A&gt; - Re: chart problem with dimension and expression&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;QlikCommunity &amp;lt;http://community.qlik.com/index.jspa&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: chart problem with dimension and expression &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;created by sebastiandpereira &amp;lt;http://community.qlik.com/people/sebastiandpereira&amp;gt;  in New to QlikView - View the full discussion &amp;lt;http://community.qlik.com/message/203823#203823&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 16:11:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366970#M1179120</guid>
      <dc:creator />
      <dc:date>2012-03-23T16:11:32Z</dc:date>
    </item>
    <item>
      <title>chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366971#M1179121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Es cierto! de dónde sos?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bueno, probaste poner el Join antes del group by? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;El problema es que habría que ver en general cómo están asociados los campos... podés reducir el documento y mandarlo?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 17:40:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366971#M1179121</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-03-23T17:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366972#M1179122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sebastian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Arme el script tal cual vos me lo pasaste. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Te adjunto el qvw para ver si  podes hacerme el favor de encontrarle la vuelta.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Si al chart le sacas deal_id no puede resolver la expresión “total”&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gracias de antemano.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gerardo&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;P&gt;pd.: de buenos aires&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De: sebastiandpereira &lt;A href="mailto:qliktech@sgaur.hosted.jivesoftware.com"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Enviado el: viernes, 23 de marzo de 2012 02:41 p.m.&lt;/P&gt;&lt;P&gt;Para: Pauza, Gerardo&lt;/P&gt;&lt;P&gt;Asunto: &lt;A href="New to QlikView"&gt;&lt;/A&gt; - Re: chart problem with dimension and expression&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;QlikCommunity &amp;lt;http://community.qlik.com/index.jspa&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: chart problem with dimension and expression &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;created by sebastiandpereira &amp;lt;http://community.qlik.com/people/sebastiandpereira&amp;gt;  in New to QlikView - View the full discussion &amp;lt;http://community.qlik.com/message/203880#203880&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 18:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366972#M1179122</guid>
      <dc:creator />
      <dc:date>2012-03-23T18:57:21Z</dc:date>
    </item>
    <item>
      <title>chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366973#M1179123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gerardo, con la expresión:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(DEALS.discounted_price*DEAL_EXTERNALS.quantity*DEALS.commission_percentage)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;muestra el total. Ahora lo podés hacer porque está en la misma tabla. Me muestra una sola fecha, por la reducción. Decime si funca en la aplicación original.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Por otro lado, por qué trabajás con tantos calendarios y tablas desvinculadas? Deberías trabajar para tener una linda nube de datos donde esté todo relacionado... De hecho, es la idea de Qlikview, pero disculpá si opino de más, es un comentario nomás.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A eso me dedico, avisame si lo necesitás!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sebas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 20:31:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366973#M1179123</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-03-23T20:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366974#M1179124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sebastian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Es verdad que muestra el total, pero cuando le sacas la dimensión deal_id, y solo dejas el mes, el total aparece como 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Con respecto a los calendarios tenes razón…. yo estoy con esto desde hace 3 meses nada mas y a los ponchazos, es decir, estoy aprendiendo sobre la marcha y búsquedas en los foros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cualquier sugerencia que tengas respecto a los calendarios bienvenida será.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gracias&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gerardo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De: sebastiandpereira &lt;A href="mailto:qliktech@sgaur.hosted.jivesoftware.com"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Enviado el: viernes, 23 de marzo de 2012 05:31 p.m.&lt;/P&gt;&lt;P&gt;Para: Pauza, Gerardo&lt;/P&gt;&lt;P&gt;Asunto: &lt;A href="New to QlikView"&gt;&lt;/A&gt; - Re: chart problem with dimension and expression&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;QlikCommunity &amp;lt;http://community.qlik.com/index.jspa&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: chart problem with dimension and expression &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;created by sebastiandpereira &amp;lt;http://community.qlik.com/people/sebastiandpereira&amp;gt;  in New to QlikView - View the full discussion &amp;lt;http://community.qlik.com/message/203923#203923&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2012 21:04:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366974#M1179124</guid>
      <dc:creator />
      <dc:date>2012-03-23T21:04:42Z</dc:date>
    </item>
    <item>
      <title>chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366975#M1179125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gerar, yo puse esta expresión que te dije:&lt;/P&gt;&lt;P&gt; &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;sum(DEALS.discounted_price*DEAL_EXTERNALS.quantity*DEALS.commission_percentage)&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;le saco deal_id y me muestra el total... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Veo esto:&lt;/P&gt;&lt;P&gt;﻿﻿﻿&lt;IMG alt="Nuevo Imagen de mapa de bits.bmp" class="jive-image" src="https://community.qlik.com/legacyfs/online/12432_Nuevo+Imagen+de+mapa+de+bits.bmp" /&gt;&lt;/P&gt;&lt;P&gt;Prestá atención que no es la misma que pasaste vos, está todo adentro del sum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Si no funca, reducilo a más meses.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2012 15:49:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366975#M1179125</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-03-26T15:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366976#M1179126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Buenísimo! está funcionando…..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Te debo una cerveza!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Y como todo argentino que le dan la mano y  agarra el codo…..si podes darme alguna idea con lo de los calendarios te agradecería muchísimo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gerardo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;De: sebastiandpereira &lt;A href="mailto:qliktech@sgaur.hosted.jivesoftware.com"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Enviado el: lunes, 26 de marzo de 2012 12:49 p.m.&lt;/P&gt;&lt;P&gt;Para: Pauza, Gerardo&lt;/P&gt;&lt;P&gt;Asunto: &lt;A href="New to QlikView"&gt;&lt;/A&gt; - Re: chart problem with dimension and expression&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;QlikCommunity &amp;lt;http://community.qlik.com/index.jspa&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re: chart problem with dimension and expression &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;created by sebastiandpereira &amp;lt;http://community.qlik.com/people/sebastiandpereira&amp;gt;  in New to QlikView - View the full discussion &amp;lt;http://community.qlik.com/message/204362#204362&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2012 17:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366976#M1179126</guid>
      <dc:creator />
      <dc:date>2012-03-26T17:25:19Z</dc:date>
    </item>
    <item>
      <title>chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366977#M1179127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Finally i could resolve this issue (Thanks Sebastian!) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The procedure was this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)First i had to create one table from deals and deal_externals using left join&lt;/P&gt;&lt;P&gt;2) and then replaced the original expression of total (total = DEALS.commission_percentage * sum(DEALS.discounted_price*DEAL_EXTERNALS.quantity)) with &lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;sum(DEALS.discounted_price*DEAL_EXTERNALS.quantity*DEALS.commission_percentage)&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: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2012 17:36:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366977#M1179127</guid>
      <dc:creator />
      <dc:date>2012-03-26T17:36:28Z</dc:date>
    </item>
    <item>
      <title>chart problem with dimension and expression</title>
      <link>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366978#M1179128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;jeje... todo bien!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Con respecto a los calendarios. Lo más recomendable siempre es tener uno sólo. La idea es hacer una nube de datos que relacione a todas las tablas, para lograr que al seleccionar un valor en un campo, te filtre los demás.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;La verdad es que no tengo alguna sugerencia más particular a tu caso, ya que para hacer esto hace falta conocer bien los datos y qué es lo que hay que mostrar, cosa que no pude comprender en lo que pasaste.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Te agregué como amigo, si querés mandame un mensaje así no ensuciamos el post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2012 19:28:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/chart-problem-with-dimension-and-expression/m-p/366978#M1179128</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-03-26T19:28:55Z</dc:date>
    </item>
  </channel>
</rss>

