<?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: How to change date format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263287#M398235</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Above Sunny's expression for Date&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Date(Floor(TimeStamp#(Trim(SubField(DateField, ' EST', 1)), 'MMM DD, YYYY hh:mm:ss')))&amp;nbsp; As Date&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;For Severity Flag&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;if(Date&amp;gt;=Date(today()-14),'High') as [Severity Flag]&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Mar 2017 18:31:50 GMT</pubDate>
    <dc:creator>aarkay29</dc:creator>
    <dc:date>2017-03-09T18:31:50Z</dc:date>
    <item>
      <title>How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263284#M398232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My data currently has the date listed in the following format:&lt;/P&gt;&lt;P&gt;Jan 29, 2017 22:01:46 EST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to change it so it only has 1/29/2017 with no time stamp. How would I accomplish this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I'm trying to set an expression for when the date is within the last 14 days, display all the data with severity = 'high'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 18:14:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263284#M398232</guid>
      <dc:creator />
      <dc:date>2017-03-09T18:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263285#M398233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Date(Floor(TimeStamp#(SubField(DateField, ' EST', 1), 'MMM DD, YYYY hh:mm:ss'))) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 18:18:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263285#M398233</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-09T18:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263286#M398234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this?&lt;/P&gt;&lt;P&gt;Replace the date with you datefield name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;nbsp; Date(Date#(Replace('Jan 29, 2017 22:01:46 EST', Right('Jan 29, 2017 22:01:46 EST', 12), ' ') , 'MMM DD, YYYY'), 'MM/DD/YYYY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;nbsp; Date(Date#(Replace('Datefield', Right('&lt;SPAN style="font-size: 13.3333px;"&gt;Datefield&lt;/SPAN&gt;', 12), ' ') , 'MMM DD, YYYY'), 'MM/DD/YYYY')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 18:25:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263286#M398234</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-03-09T18:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263287#M398235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Above Sunny's expression for Date&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Date(Floor(TimeStamp#(Trim(SubField(DateField, ' EST', 1)), 'MMM DD, YYYY hh:mm:ss')))&amp;nbsp; As Date&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;For Severity Flag&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;if(Date&amp;gt;=Date(today()-14),'High') as [Severity Flag]&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 18:31:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263287#M398235</guid>
      <dc:creator>aarkay29</dc:creator>
      <dc:date>2017-03-09T18:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263288#M398236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works, but there's also 'EDT', so all those dates with EDT are blank, how do I fix that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 18:51:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263288#M398236</guid>
      <dc:creator />
      <dc:date>2017-03-09T18:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263289#M398237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try 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;Date(Floor(TimeStamp#(SubField(DateField, '&lt;SPAN style="color: #ff0000;"&gt; E&lt;/SPAN&gt;', 1), 'MMM DD, YYYY hh:mm:ss'))) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 18:53:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263289#M398237</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-09T18:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263290#M398238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try This&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Date(Floor(TimeStamp#(Trim(&lt;/STRONG&gt; Left(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DateField&lt;/STRONG&gt;,Len(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DateField&lt;/STRONG&gt;)-3))&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;, 'MMM DD, YYYY hh:mm:ss'))) &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 19:00:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263290#M398238</guid>
      <dc:creator>aarkay29</dc:creator>
      <dc:date>2017-03-09T19:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263291#M398239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hm, severity flag isn't working. this is how i was thinking to try it, but it didnt work for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(New_first_discovered&amp;gt;=Date(today()-14) AND New_Severity = 'High' &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 19:04:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263291#M398239</guid>
      <dc:creator />
      <dc:date>2017-03-09T19:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263292#M398240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are you exactly trying to achieve and also Is&lt;STRONG&gt; &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;New_first_discovered in Date format&lt;/STRONG&gt;&lt;/SPAN&gt;&amp;nbsp; ?? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 19:10:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263292#M398240</guid>
      <dc:creator>aarkay29</dc:creator>
      <dc:date>2017-03-09T19:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263293#M398241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked for the date issue, thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 19:36:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263293#M398241</guid>
      <dc:creator />
      <dc:date>2017-03-09T19:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263294#M398242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;New first discovered is the date field. &lt;/P&gt;&lt;P&gt;its complicated. I have two qvd's i'm pulling information from. New data and Closed data&lt;/P&gt;&lt;P&gt;for the chart, i want a stacked bar graph, with the severity on the x axis (high and low) and the stacks to show New data and Closed data.&lt;/P&gt;&lt;P&gt;I also want to break down the x axis by time frame (0-14 days, 15-30 days, etc) please see picture attached.&lt;IMG alt="IMG_1893.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/155823_IMG_1893.JPG" style="height: 465px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 19:44:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263294#M398242</guid>
      <dc:creator />
      <dc:date>2017-03-09T19:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263295#M398243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You want this High Low flag in comparison to Today's date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 19:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263295#M398243</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-09T19:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263296#M398244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, in comparison to the date it was created. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 19:50:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263296#M398244</guid>
      <dc:creator />
      <dc:date>2017-03-09T19:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263297#M398245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So the below date in comparison to today?&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;Date(Floor(TimeStamp#(SubField(DateField, '&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt; E&lt;/SPAN&gt;', 1), 'MMM DD, YYYY hh:mm:ss'))) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(CreatedDate &amp;lt;= Today() - 14, 1, 0) as Flag;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Date(Floor(TimeStamp#(SubField(DateField, '&lt;SPAN style="font-style: inherit; font-family: inherit; color: #ff0000;"&gt; E&lt;/SPAN&gt;', 1), 'MMM DD, YYYY hh:mm:ss'))) as Date&lt;/STRONG&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YourOtherDataFields&lt;/STRONG&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;FROM ....;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now whichever row has Flag = 1, it is the row where CreatedDate is within 14 days of Today(). and where ever it is 0, the created date is older than 14 days from today&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 19:59:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263297#M398245</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-09T19:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263298#M398246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so if this is in my load script, how would I create the same pattern for 15-30 days, 31-90, and 91-180+?&lt;/P&gt;&lt;P&gt;and what would I put in my expression?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 20:02:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263298#M398246</guid>
      <dc:creator />
      <dc:date>2017-03-09T20:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263299#M398247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same idea....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #ff0000;"&gt;If(Today() - CreatedDate &amp;lt;= 14, Dual('0-14 days', 1),&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Today() - CreatedDate &amp;lt;= 30, Dual('15-30 days', 2),&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Today() - CreatedDate &amp;lt;= 90, Dual('31-90 days', 3), Dual('91-180+ days', 4)))) as Flag;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Date(Floor(TimeStamp#(SubField(DateField, ' E', 1), 'MMM DD, YYYY hh:mm:ss'))) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YourOtherDataFields&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;FROM ....;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 20:04:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263299#M398247</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-09T20:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263300#M398248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;okay got it, but then how do i set up my expressions in the bar chart?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 20:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263300#M398248</guid>
      <dc:creator />
      <dc:date>2017-03-09T20:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263301#M398249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Seems like you need three dimensions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimension&lt;/P&gt;&lt;P&gt;Flag&lt;/P&gt;&lt;P&gt;Severity&lt;/P&gt;&lt;P&gt;ClosedData/NewData Field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression&lt;/P&gt;&lt;P&gt;Count/Sum expression&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 20:11:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263301#M398249</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-09T20:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263302#M398250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hm, Flag is only pulling 91-180+ days. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so closed/open doesn't have a field. its two documents, one with data from all the open fields, and one document with all the closed fields. How would I use that for a dimension? I'm confused for what I should be counting in the expression&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 16:39:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263302#M398250</guid>
      <dc:creator />
      <dc:date>2017-03-10T16:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to change date format</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263303#M398251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it is difficult to understand and know what you have. Would you be able to share the app you are working with?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2017 16:45:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-date-format/m-p/1263303#M398251</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-10T16:45:47Z</dc:date>
    </item>
  </channel>
</rss>

