<?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: date(Floor(MyDate),'MMM') in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561298#M597807</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When you are using only Date function,May be due to different time available on same date it is treating it like different values. Try using Distinct like below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Load Distinct&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;date&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#0000ff"&gt;Floor&lt;/FONT&gt;&lt;SPAN&gt;(&lt;FONT color="#800000"&gt;datInkomDAG&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;),'MMM')&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000ff"&gt;as&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#800000"&gt;datInkomMÅN&lt;/FONT&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;date&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#0000ff"&gt;Floor&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#800000"&gt;datInkomDatum&lt;/FONT&gt;&lt;SPAN&gt;))&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000ff"&gt;as&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#800000"&gt;datInkomDAG&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;from A.xlsx;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;Let me know if it worked.&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Mar 2019 12:07:34 GMT</pubDate>
    <dc:creator>amrinder</dc:creator>
    <dc:date>2019-03-26T12:07:34Z</dc:date>
    <item>
      <title>date(Floor(MyDate),'MMM')</title>
      <link>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561286#M597805</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I&amp;nbsp;have a timestamp and have managed to&amp;nbsp;make it into only YYYY-MM-DD by using date-floor-function. It works perfectly!&lt;/P&gt;&lt;P&gt;When only using date-function, without floor, duplicates of the date appear, see the attached picture. Therefore I am using the floor-function aswell.&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#800000"&gt;datInkomDatum&lt;/FONT&gt;,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;date&lt;/FONT&gt;(&lt;FONT color="#0000ff"&gt;Floor&lt;/FONT&gt;(&lt;FONT color="#800000"&gt;datInkomDatum&lt;/FONT&gt;)) &lt;FONT color="#0000ff"&gt;as&lt;/FONT&gt; &lt;FONT color="#800000"&gt;datInkomDAG&lt;/FONT&gt;,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;date&lt;/FONT&gt;(&lt;FONT color="#800000"&gt;datInkomDatum&lt;/FONT&gt;) &lt;FONT color="#0000ff"&gt;as&lt;/FONT&gt; &lt;FONT color="#800000"&gt;datInkomTEST&lt;/FONT&gt;,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;However, when I use the same method (date-floor-function)&amp;nbsp;to get the months out,&amp;nbsp;it shows duplicates of the months.&lt;BR /&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;FONT color="#0000ff"&gt;date&lt;/FONT&gt;(&lt;FONT color="#0000ff"&gt;Floor&lt;/FONT&gt;(&lt;FONT color="#800000"&gt;datInkomDatum&lt;/FONT&gt;),'MMM') &lt;FONT color="#0000ff"&gt;as&lt;/FONT&gt; &lt;FONT color="#800000"&gt;datInkomMÅN&lt;/FONT&gt;, &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;How do I get the months out like I did with the dates for &lt;FONT size="2"&gt;&lt;FONT color="#800000"&gt;datInkomDAG&lt;/FONT&gt;&lt;/FONT&gt;?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:10:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561286#M597805</guid>
      <dc:creator>AnnaQlik</dc:creator>
      <dc:date>2024-11-16T21:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: date(Floor(MyDate),'MMM')</title>
      <link>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561293#M597806</link>
      <description>Easiest way is to wrap the date in monthstart(). This will give you a consistent point of reference. Qlikview likes to hold on to the actual date in the background even when you ask only for the month portion.</description>
      <pubDate>Tue, 26 Mar 2019 12:00:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561293#M597806</guid>
      <dc:creator>wandererroch</dc:creator>
      <dc:date>2019-03-26T12:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: date(Floor(MyDate),'MMM')</title>
      <link>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561298#M597807</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When you are using only Date function,May be due to different time available on same date it is treating it like different values. Try using Distinct like below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Load Distinct&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;date&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#0000ff"&gt;Floor&lt;/FONT&gt;&lt;SPAN&gt;(&lt;FONT color="#800000"&gt;datInkomDAG&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;),'MMM')&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000ff"&gt;as&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#800000"&gt;datInkomMÅN&lt;/FONT&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff"&gt;date&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#0000ff"&gt;Floor&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;FONT color="#800000"&gt;datInkomDatum&lt;/FONT&gt;&lt;SPAN&gt;))&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000ff"&gt;as&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#800000"&gt;datInkomDAG&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;from A.xlsx;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;Let me know if it worked.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2019 12:07:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561298#M597807</guid>
      <dc:creator>amrinder</dc:creator>
      <dc:date>2019-03-26T12:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: date(Floor(MyDate),'MMM')</title>
      <link>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561306#M597808</link>
      <description>&lt;P&gt;May be just &lt;STRONG&gt;Month()&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;Month&lt;/STRONG&gt;(datInkomDatum) as datInkomMÅN&lt;/PRE&gt;</description>
      <pubDate>Tue, 26 Mar 2019 12:22:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561306#M597808</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2019-03-26T12:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: date(Floor(MyDate),'MMM')</title>
      <link>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561310#M597809</link>
      <description>&lt;P&gt;Thank you Tresesco!! Embarrassingly simple ^^&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2019 12:26:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/date-Floor-MyDate-MMM/m-p/1561310#M597809</guid>
      <dc:creator>AnnaQlik</dc:creator>
      <dc:date>2019-03-26T12:26:58Z</dc:date>
    </item>
  </channel>
</rss>

