<?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: Daten von gestern anzeigen in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138836#M20727</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, sorry Merry, the browser translated the Tag to day automatically from German to English.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's the datatype of your Tag field, when you put it on a listbox, does it align to the left (meaning it's interpreted as a text) or to the right (interpreted as a number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use today()-1 for instance, if you have a numeric or dual type of data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jul 2018 11:49:33 GMT</pubDate>
    <dc:creator>felipedl</dc:creator>
    <dc:date>2018-07-30T11:49:33Z</dc:date>
    <item>
      <title>Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138833#M20724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo Zusammen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ich benötige mal wieder eure Hilfe und zwar möchte ich in einem Diagramm die Daten von gestern anzeigen, ohne das eine Auswahl auf Tagesebene getroffen wurde. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Es wird immer nur die Woche ausgewählt und trotzdem soll heute die jeweilige Schicht von gestern gezeigt werde, wozu es drei (F, S, N) Diagramme gibt, für jede eine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Überlegt habe ich es zb. folgend:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15329403562834958" jivemacro_uid="_15329403562834958" modifiedtitle="true"&gt;
&lt;P&gt;sum({&amp;lt;Tag={'max(=$(=(Tag)))'}&amp;gt;}if(Schicht='F', Dauer))&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;Aber sicher bin ich mir nicht, da das eigentlich ja vorschreibt, dass der aktuelle Tag selektiert ist, was aber nicht sein darf, da parallel auch Diagramme sind welche die ganze Woche zeigen oder so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Danke für eure Hilfe schon mal und Grüße&lt;/P&gt;&lt;P&gt;Merry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 08:51:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138833#M20724</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-07-30T08:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138834#M20725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Merry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your day field is a number (or dual representation, with number and text) you can do arithmetic operations to add days on it to show the previous day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;sum&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;lt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // gets the max day (selected or not) and subtracts one to get the previous day&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tag = {"$(=max(day)-1)"},&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // shift type F&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; shift={"F"}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; duration&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 11:24:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138834#M20725</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-07-30T11:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138835#M20726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The field day i don't have, which you mean there I can taken?&lt;/P&gt;&lt;P&gt;Can I do some with the today()&amp;nbsp; or the same fild, so i mean Tag?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 11:45:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138835#M20726</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-07-30T11:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138836#M20727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, sorry Merry, the browser translated the Tag to day automatically from German to English.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's the datatype of your Tag field, when you put it on a listbox, does it align to the left (meaning it's interpreted as a text) or to the right (interpreted as a number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use today()-1 for instance, if you have a numeric or dual type of data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 11:49:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138836#M20727</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-07-30T11:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138837#M20728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-family: arial,helvetica,sans-serif; font-size: 13.33px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;It is a number, because it align to the right. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok, now I think it's working.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 12:41:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138837#M20728</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-07-30T12:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138838#M20729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad it helped &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;.&lt;/P&gt;&lt;P&gt;Can you mark the anwser that helped you as correct so other in the community might see it as well?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Felipe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 12:47:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138838#M20729</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-07-30T12:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138839#M20730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i use today(), probably i should use the KeyDatum, that they have the same Format (both 'DD.MM.YYYY') and not only one with Day and one with Date?&lt;BR /&gt;For that way is that the correct form:&lt;BR /&gt;&amp;lt;%_Key_Kalender= {"$(=(today()-1))"}&amp;gt;&lt;/P&gt;&lt;P&gt;or what is wrong, thats not working?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Merry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 13:45:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138839#M20730</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-07-30T13:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138840#M20731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I will do, if I am finshed and have the correct way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 05:49:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138840#M20731</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-07-31T05:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138841#M20732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial,sans-serif; font-size: 16px; font-style: normal; font-weight: 400; text-align: left; text-indent: 0px;"&gt;I have solved it now via a flag in the calendar, because I unfortunately did not get the formula and the first did not work completely.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 12:00:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138841#M20732</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-07-31T12:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138842#M20733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good to know Merry post your solution and mark it as correct, might help other on the community.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 12:28:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138842#M20733</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-07-31T12:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138843#M20734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That solution is only, because the other don't work.&lt;/P&gt;&lt;P&gt;I would like to get that formel right:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15331003884909884" jivemacro_uid="_15331003884909884" modifiedtitle="true"&gt;
&lt;P&gt;sum(&amp;lt;%_Key_Kalender={"$(=(today()-1))"}&amp;gt;if(shift='F', Time))&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Did some one know what is wrong with that formel?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #001000; font-family: Helvetica;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 05:16:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138843#M20734</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-08-01T05:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138844#M20735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mery&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The today()-1 returns a textual representation of the date, and your %_key_kalender might be a number, not giving the right result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other thing is, that the if statement your doing could be incorporated to the set analysis, like so&lt;/P&gt;&lt;OL class="dp-c" start="1" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; list-style-position: initial; list-style-image: initial; color: #5c5c5c; margin: 0 0 1px 45px !important;"&gt;&lt;LI&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit; font-weight: inherit;"&gt;sum(&amp;lt;%_Key_Kalender={"$(=&lt;STRONG&gt;Num(&lt;/STRONG&gt;today()-1))"},&lt;STRONG&gt;shift={'F'}&lt;/STRONG&gt;&amp;gt;Time))&amp;nbsp; &lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That will sum up the last day's and shift "F" time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To see what's going on, add a simple straight table with your formula, and hover the mouse over the expression header, that will show you what the set&amp;nbsp; analysis is returning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you post that and the %&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;_Key_Kalender field on a screenshot to check what might be wrong?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 10:46:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138844#M20735</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-08-01T10:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Daten von gestern anzeigen</title>
      <link>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138845#M20736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for try to help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe there 2 breaks "{}" missing, but it's not gooing as well, with that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15331253744583039" jivemacro_uid="_15331253744583039" modifiedtitle="true"&gt;
&lt;P&gt;sum(&lt;STRONG&gt;{&lt;/STRONG&gt;&amp;lt;%_Key_Kalender= {"$(=num(today()-1))"&lt;STRONG&gt;}&lt;/STRONG&gt;&amp;gt;} Time) &lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from the table I can not make a screenshoot, because its called "No data available".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Kalender Field are the following:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date(Datumsfeld_tmp.Datumsfeld, 'DD.MM.YYYY') as %_Key_Kalender, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 12:13:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Daten-von-gestern-anzeigen/m-p/138845#M20736</guid>
      <dc:creator>merry2018</dc:creator>
      <dc:date>2018-08-01T12:13:34Z</dc:date>
    </item>
  </channel>
</rss>

