<?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 - expression in Identifier in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/set-analysis-expression-in-Identifier/m-p/719475#M474630</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Niccolo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you absolutely have to do this without creating any new fields, then the below should work for you. However I would recommend creating a new year field and using that as per Manish's suggestion&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Sum({&amp;lt;ASS_DTA_MAKEDATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;= {&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;=$(=YearStart(today())) &amp;lt;=$(=YearEnd(today()))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;}&amp;gt;} ASS_DBL_RN&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hope that helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Joe&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Sep 2014 12:00:57 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-09-05T12:00:57Z</dc:date>
    <item>
      <title>set analysis - expression in Identifier</title>
      <link>https://community.qlik.com/t5/QlikView/set-analysis-expression-in-Identifier/m-p/719472#M474627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;this expression isn't working, can you give me a hint on what is wrong? The problem is in the identifier where I need to extract the year of dimension ASS_DTA_MAKEDATE (format 'MM/YYYY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;year(ASS_DTA_MAKEDATE)= {'$(=Date(yearname(today()),'YYYY'))'}&amp;gt;}, ASS_DBL_RN)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;n&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2014 11:07:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-analysis-expression-in-Identifier/m-p/719472#M474627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-05T11:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: set analysis - expression in Identifier</title>
      <link>https://community.qlik.com/t5/QlikView/set-analysis-expression-in-Identifier/m-p/719473#M474628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to create below field in script itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;year(ASS_DTA_MAKEDATE) as Year&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;now use as below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&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;"&gt;sum({&amp;lt;year= {'$(=Year(Today()))'}&amp;gt;}, ASS_DBL_RN)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2014 11:09:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-analysis-expression-in-Identifier/m-p/719473#M474628</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-09-05T11:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: set analysis - expression in Identifier</title>
      <link>https://community.qlik.com/t5/QlikView/set-analysis-expression-in-Identifier/m-p/719474#M474629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your expression has a , before the field - remove that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the below:&lt;/P&gt;&lt;P&gt;sum({&amp;lt;ASS_DTA_MAKEDATE={"=Year(ASS_DTA_MAKEDATE) = $(=Date(yearname(today()),'YYYY'))"}&amp;gt;} ASS_DBL_RN)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2014 11:19:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-analysis-expression-in-Identifier/m-p/719474#M474629</guid>
      <dc:creator>simondachstr</dc:creator>
      <dc:date>2014-09-05T11:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: set analysis - expression in Identifier</title>
      <link>https://community.qlik.com/t5/QlikView/set-analysis-expression-in-Identifier/m-p/719475#M474630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Niccolo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you absolutely have to do this without creating any new fields, then the below should work for you. However I would recommend creating a new year field and using that as per Manish's suggestion&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Sum({&amp;lt;ASS_DTA_MAKEDATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;= {&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;=$(=YearStart(today())) &amp;lt;=$(=YearEnd(today()))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;}&amp;gt;} ASS_DBL_RN&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hope that helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Joe&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2014 12:00:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-analysis-expression-in-Identifier/m-p/719475#M474630</guid>
      <dc:creator />
      <dc:date>2014-09-05T12:00:57Z</dc:date>
    </item>
  </channel>
</rss>

