<?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 Date Range in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100031#M15937</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess the same thing we did for First and Last Name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concat({&amp;lt;[HR Next Appraisal Date] = {"&amp;gt;=$(=date(today()+3)) &amp;lt;=$(=date(today()+20)) "}&amp;gt;} [HR First Name] &amp;amp; ' ' &amp;amp; [HR Last Name]&lt;SPAN style="color: #ff0000;"&gt; &amp;amp; '(' &amp;amp; [HR Next Appraisal Date] &amp;amp; ')'&lt;/SPAN&gt;, Chr(10))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Oct 2018 11:45:14 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2018-10-12T11:45:14Z</dc:date>
    <item>
      <title>Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100022#M15928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All - I have the current set analysis:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count({&amp;lt;[HR Next Appraisal Date] = {'&amp;gt;=$(=Date(Today(1)+3&amp;lt;=$(=Date(Today(1) + 10))'}&amp;gt;} [HR Assignment Number])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to get it to show me all records where employee appraisals are due, between 3 days and 10 days from today's date.&amp;nbsp; The above is pulling records much older than today's date (a year ago!) so bit confused!!!&amp;nbsp; Can you help?&amp;nbsp; Many thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 10:01:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100022#M15928</guid>
      <dc:creator>jlampard40</dc:creator>
      <dc:date>2018-10-12T10:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100023#M15929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try with below exp :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Count({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[HR Next Appraisal Date]&lt;/SPAN&gt; = {"&amp;gt;=$(=date(today()+3)) &amp;lt;=$(=date(today()+10)) "}&amp;gt;}&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[HR Assignment Number]&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 10:21:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100023#M15929</guid>
      <dc:creator>chinnuchinni</dc:creator>
      <dc:date>2018-10-12T10:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100024#M15930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the date format for your field HR Next Appraisal Date? Check to make sure that Date() function gives the same format or not. You can do this by using =Date(Today(1) + 3) in a text box object. If it is the same format, then this should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Count({&amp;lt;[HR Next Appraisal Date] = {&lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;"&lt;/SPAN&gt;&amp;gt;=$(=Date(Today(1)+3&lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;))&lt;/SPAN&gt;&amp;lt;=$(=Date(Today(1) + 10))&lt;STRONG style=": ; color: #ff0000; font-size: 14pt;"&gt;"&lt;/STRONG&gt;}&amp;gt;} [HR Assignment Number])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the format is a little different... for example HR Next Appraisal Date is in format DD/MM/YYYY, but Date() function gives you DD-MM-YYYY... then you need to try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Count({&amp;lt;[HR Next Appraisal Date] = {&lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;"&lt;/SPAN&gt;&amp;gt;=$(=Date(Today(1)+3&lt;SPAN style="color: #ff0000; font-size: 12pt;"&gt;, 'DD/MM/YYYY'&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 14pt;"&gt;))&lt;/SPAN&gt;&amp;lt;=$(=Date(Today(1) + 10&lt;STRONG style=": ; color: #ff0000; font-size: 12pt;"&gt;, 'DD/MM/YYYY'&lt;/STRONG&gt;))&lt;STRONG style=": ; color: #ff0000; font-size: 14pt;"&gt;"&lt;/STRONG&gt;}&amp;gt;} [HR Assignment Number])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 10:49:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100024#M15930</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-12T10:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100025#M15931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's great - if I want to put this into an email alert within Qlikview, I can use this formula for the count:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='The following ' &amp;amp; Count({&amp;lt;[HR Next Appraisal Date] = {"&amp;gt;=$(=date(today()+3)) &amp;lt;=$(=date(today()+20)) "}&amp;gt;}[HR Assignment Number])&lt;/P&gt;&lt;P&gt;&amp;amp; ' members of staff have their appraisal due within the next week:'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, how can I then list the staff members - do I use the concat statement?&amp;nbsp; The fields I'd pull are [HR First Name] and [HR Last Name].&amp;nbsp; I'm not sure how I can combine the above formula and a concat statement to produce something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'The following 4 members of staff have their appraisal due within the next week:&amp;nbsp; John Smith and Mike Jones'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your help guys.&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 10:56:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100025#M15931</guid>
      <dc:creator>jlampard40</dc:creator>
      <dc:date>2018-10-12T10:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100026#M15932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Should be just this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concat({&amp;lt;[HR Next Appraisal Date] = {"&amp;gt;=$(=date(today()+3)) &amp;lt;=$(=date(today()+20)) "}&amp;gt;} [HR First Name] &amp;amp; ' ' &amp;amp; [HR Last Name], ', ')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 10:58:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100026#M15932</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-12T10:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100027#M15933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect!!&amp;nbsp; Was getting so muddled with it - you're a star.&amp;nbsp; Awesome.&amp;nbsp; Thanks so much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 11:16:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100027#M15933</guid>
      <dc:creator>jlampard40</dc:creator>
      <dc:date>2018-10-12T11:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100028#M15934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Quick one Sunny - how would I change the expression to list the names one below the other, rather than as a list with commas i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John Smith&lt;/P&gt;&lt;P&gt;Mike Welsh&lt;/P&gt;&lt;P&gt;Paul Knight&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 11:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100028#M15934</guid>
      <dc:creator>jlampard40</dc:creator>
      <dc:date>2018-10-12T11:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100029#M15935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Concat({&amp;lt;[HR Next Appraisal Date] = {"&amp;gt;=$(=date(today()+3)) &amp;lt;=$(=date(today()+20)) "}&amp;gt;} [HR First Name] &amp;amp; ' ' &amp;amp; [HR Last Name], &lt;SPAN style="color: #ff0000;"&gt;Chr(10)&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 11:37:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100029#M15935</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-12T11:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100030#M15936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK - thanks Sunny.&amp;nbsp; One last one - if I want to add the actual date of the next appraisal in brackets, next to their name - how would I do this.&amp;nbsp; The field would need to be [HR Next Appraisal Date] - something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;John Smith (14/10/2018)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Mike Welsh (15/10/2018)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Paul Knight (16/10/2018)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 11:43:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100030#M15936</guid>
      <dc:creator>jlampard40</dc:creator>
      <dc:date>2018-10-12T11:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100031#M15937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess the same thing we did for First and Last Name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concat({&amp;lt;[HR Next Appraisal Date] = {"&amp;gt;=$(=date(today()+3)) &amp;lt;=$(=date(today()+20)) "}&amp;gt;} [HR First Name] &amp;amp; ' ' &amp;amp; [HR Last Name]&lt;SPAN style="color: #ff0000;"&gt; &amp;amp; '(' &amp;amp; [HR Next Appraisal Date] &amp;amp; ')'&lt;/SPAN&gt;, Chr(10))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 11:45:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100031#M15937</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-12T11:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100032#M15938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great - the chr(10) doesn't seem to want to work though Sunny.&amp;nbsp; Still getting the names in one line.&amp;nbsp; Any ideas?&amp;nbsp; Rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 11:50:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100032#M15938</guid>
      <dc:creator>jlampard40</dc:creator>
      <dc:date>2018-10-12T11:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100033#M15939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try Chr(13)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 11:51:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100033#M15939</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-12T11:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100034#M15940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No - still no luck Sunny. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 12:05:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100034#M15940</guid>
      <dc:creator>jlampard40</dc:creator>
      <dc:date>2018-10-12T12:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Date Range</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100035#M15941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where exactly are you using this? In a text box object? Would you be able to share an image of the text box object? What delimiter does it show when you use Chr(10) or Chr(13)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2018 12:15:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Date-Range/m-p/100035#M15941</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-10-12T12:15:29Z</dc:date>
    </item>
  </channel>
</rss>

