<?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: Set Analysis on Date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8483#M1292</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is the solution... What is the diference between " and ' in Set Analysis?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2018 14:46:55 GMT</pubDate>
    <dc:creator>jplozano</dc:creator>
    <dc:date>2018-06-11T14:46:55Z</dc:date>
    <item>
      <title>Set Analysis on Date</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8480#M1289</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;I have some problems with my set analysis. I have a date dimension called Fecha_Valor (DD/MM/YYYY) and a measure called Liquidez.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i select the date 05/01/2018, i want the liquidez value for 04/01/2018. Im triying with this &lt;/P&gt;&lt;P&gt;sum({$ &amp;lt; Fecha_Valor={'$(=Only(Fecha_Valor)-1)'} &amp;gt; } Liquidez) but it doesn´t work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I try sum({$ &amp;lt; Fecha_Valor={'$(=Only(Fecha_Valor))'} &amp;gt; } Liquidez), i can see the value for the date filter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you help me please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2018 14:24:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8480#M1289</guid>
      <dc:creator>jplozano</dc:creator>
      <dc:date>2018-06-11T14:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis on Date</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8481#M1290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum({$&amp;lt;Fecha_Valor = {"$(=Date(Only(Fecha_Valor)-1))"}&amp;gt;} Liquidez)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2018 14:33:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8481#M1290</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-06-11T14:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis on Date</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8482#M1291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;define a variable first, in your variable editor:&lt;/P&gt;&lt;P&gt;v_GetLastDay = if(getselectedcount(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Fecha_Valor&lt;/SPAN&gt;)=0, today()-1, GetFieldSelections(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Fecha_Valor&lt;/SPAN&gt;)-1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have added the condition to select automatically yesterday when no date is selected in fetch_valor but I would have prefered doing that in the master calendar date field because &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Fecha_Valor might be not continuous.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then your expression should be:&lt;/P&gt;&lt;P&gt;sum(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;$&amp;lt;Fecha_Valor{"=$(&lt;SPAN style="font-size: 13.3333px;"&gt;v_GetLastDay&lt;/SPAN&gt;)"} =&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; Liquidez) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2018 14:33:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8482#M1291</guid>
      <dc:creator>kfoudhaily</dc:creator>
      <dc:date>2018-06-11T14:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis on Date</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8483#M1292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is the solution... What is the diference between " and ' in Set Analysis?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2018 14:46:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8483#M1292</guid>
      <dc:creator>jplozano</dc:creator>
      <dc:date>2018-06-11T14:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis on Date</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8484#M1293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check them out here&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/5335"&gt;Quotes in Set Analysis&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2018 14:48:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-on-Date/m-p/8484#M1293</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-06-11T14:48:14Z</dc:date>
    </item>
  </channel>
</rss>

