<?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 Need help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-help/m-p/1926881#M1231962</link>
    <description>&lt;DIV class="_3xX726aBn29LDbsDtzr_6E _1Ap4F5maDtT1E1YuCiaO0r D3IL3FD0RFy_mkKLPwL4" data-click-id="text"&gt;
&lt;DIV class="_292iotee39Lmt0MkQZ2hPV RichTextJSON-root"&gt;
&lt;P class="_1qeIAgB0cPwnLhDF9XSiJM"&gt;I am new to qlikview and Need help. I want to Check if for Example today -2 days was a Holiday (all written down in table Holiday) and then just give a Feedback. I cant even Write the if.. Thanks for the help!&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
    <dc:creator>ogelnisan</dc:creator>
    <dc:date>2026-01-26T16:26:21Z</dc:date>
    <item>
      <title>Need help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help/m-p/1926881#M1231962</link>
      <description>&lt;DIV class="_3xX726aBn29LDbsDtzr_6E _1Ap4F5maDtT1E1YuCiaO0r D3IL3FD0RFy_mkKLPwL4" data-click-id="text"&gt;
&lt;DIV class="_292iotee39Lmt0MkQZ2hPV RichTextJSON-root"&gt;
&lt;P class="_1qeIAgB0cPwnLhDF9XSiJM"&gt;I am new to qlikview and Need help. I want to Check if for Example today -2 days was a Holiday (all written down in table Holiday) and then just give a Feedback. I cant even Write the if.. Thanks for the help!&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help/m-p/1926881#M1231962</guid>
      <dc:creator>ogelnisan</dc:creator>
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help/m-p/1928132#M1231971</link>
      <description>&lt;P&gt;i would do this logic in the load script - this way your expressions will be simpler and faster.&lt;BR /&gt;i would create a new field in your table where you have your dates (possibly your calendar table) that says whether that date has a holiday 2 days back.&amp;nbsp; so in your table, you can just test for this field = Yes, 1, or whatever value you used.&lt;/P&gt;
&lt;P&gt;to do that left join your calendar with the holidays table (can also be the calendar table - actually should be the calendar table) where you less 2 days so it matches up.&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 16:44:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help/m-p/1928132#M1231971</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-05-09T16:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Need help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help/m-p/1928133#M1231972</link>
      <description>&lt;P&gt;here is a sample code (this just shows you how it can be done)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Dates:
load date(today()-iterno()) as Date
while iterno()&amp;lt;100;
load 1 AutoGenerate(1); 

NoConcatenate
Holidays:
load Date, if(rnd=1,1) as isHoliday;
load Date, floor(rand()*20) as rnd
Resident Dates;

inner join (Holidays)
load 1 as isHoliday AutoGenerate(1);

left join (Dates)
load Date(Date+2) as Date, Date as ThisIsTheCorrespondingholiday, isHoliday as HasAHoliday2DaysBefore

resident Holidays;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 16:49:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help/m-p/1928133#M1231972</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-05-09T16:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need help</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help/m-p/1928137#M1231973</link>
      <description>&lt;P&gt;here is a sample look at the resulting  fields:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-05-09 at 12.50.23 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/78971i9D29A3BD1636311B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2022-05-09 at 12.50.23 PM.png" alt="Screen Shot 2022-05-09 at 12.50.23 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;holidays are 2/4 and 2/7&lt;BR /&gt;so dates you are interested in are 2/6 and 2/9 which have holidays 2 days prior&lt;/P&gt;
&lt;P&gt;hope that helps&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 16:52:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help/m-p/1928137#M1231973</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-05-09T16:52:23Z</dc:date>
    </item>
  </channel>
</rss>

