<?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 Format -Urgent in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837784#M1014439</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried in both ways Preceding load and Resident concept .But, Same error it raising.I don't know where i'm doing the mistake.Please Identify the mistake in attached sample app.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Apr 2015 04:27:26 GMT</pubDate>
    <dc:creator>krishna20</dc:creator>
    <dc:date>2015-04-16T04:27:26Z</dc:date>
    <item>
      <title>Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837769#M1014424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having two dates which are in integer format . I have calculation with these dates.&lt;/P&gt;&lt;P&gt;Please help me to convert these dates for exact calculation. I'm having sql query based on this i converted these dates.But exact result is not getting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P&gt;ROUND((TP_POL_TO_DT - TP_POL_FM_DT),2) DIFF,&lt;/P&gt;&lt;P&gt;ROUND((SYSDATE&amp;nbsp; - TP_POL_FM_DT&amp;nbsp; ),2) REMAINING_DAYS,&lt;/P&gt;&lt;P&gt;SUM(TP_PREM_LC_1)- SUM(TP_DISC_LC_1) + SUM(TP_LOAD_LC_1) GROSS_PREM,&lt;/P&gt;&lt;P&gt;FROM T_GI_POLICY&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;TP_COMP_CODE='001'&lt;/P&gt;&lt;P&gt;AND TP_CUST_CODE='111502'&lt;/P&gt;&lt;P&gt;GROUP BY TP_POL_FM_DT,TP_POL_TO_DT&lt;/P&gt;&lt;P&gt;Result is :&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;365&lt;/TD&gt;&lt;TD&gt;104.51&lt;/TD&gt;&lt;TD&gt;1018848&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;I'm converting one of the date above query as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=(Round(Date(Today(),'DD/MM/YYYY'),2)-Round(Date(TP_POL_FM_DT,'DD/MM/YYYY'),2)) as Remaining Days&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;My Result is&amp;nbsp; : 364 Instead of 365 and&amp;nbsp; 102 Instead of 104.51 I'm getting this. Please help me out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 09:47:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837769#M1014424</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-15T09:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837770#M1014425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;tRY LIKE BELOW,&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;SELECT&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;INTERVAL(TP_POL_TO_DT - TP_POL_FM_DT,'DD') as&amp;nbsp; DIFF,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;INTERVAL(SYSDATE&amp;nbsp; - TP_POL_FM_DT,'DD') as REMAINING_DAYS,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SUM(TP_PREM_LC_1) - SUM(TP_DISC_LC_1) + SUM(TP_LOAD_LC_1) aS GROSS_PREM,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM T_GI_POLICY...&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;ALSO,&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;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;INTERVAL(Date(Today(),'DD/MM/YYYY')-Date(TP_POL_FM_DT,'DD/MM/YYYY'),'DD') as Remaining Days ...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 10:07:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837770#M1014425</guid>
      <dc:creator />
      <dc:date>2015-04-15T10:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837771#M1014426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harsha,&lt;/P&gt;&lt;P&gt;Thank you for your reply,&lt;/P&gt;&lt;P&gt;Its working for one expression&lt;/P&gt;&lt;P&gt;=INTERVAL(Date(TP_POL_TO_DT,'DD/MM/YYYY')-Date(TP_POL_FM_DT,'DD/MM/YYYY'),'DD') &lt;/P&gt;&lt;P&gt;Before applying Interval function my value is 364.999958 now its 364.Its perfect&lt;/P&gt;&lt;P&gt;and not working for &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;INTERVAL(Date(Today(),'DD/MM/YYYY')-Date(TP_POL_FM_DT,'DD/MM/YYYY'),'DD')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;But its no change the value remains same as 103 actual value is 104.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 10:25:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837771#M1014426</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-15T10:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837772#M1014427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A few notes:&lt;/P&gt;&lt;P&gt;* Assuming you are interested in dates rather than timestamps, Floor() your dates instead of round()ing them.&lt;/P&gt;&lt;P&gt;* If you are using round(), you should use now() rather than today().&lt;/P&gt;&lt;P&gt;* Assuming your columns are actual dates, you shouldn't have to date() them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 10:27:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837772#M1014427</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2015-04-15T10:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837773#M1014428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Not getting expected result as suggested.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 10:38:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837773#M1014428</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-15T10:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837774#M1014429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your dates are like &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Due date = 20150123 &amp;amp; Today = 20150415. then you can use below expression to get days difference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; (makedate(left( Today,4),mid( Today,5,2),right( Today,2)) -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; makedate(left("Due date",4),mid("Due date",5,2),right("Due date",2))) as Days&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shambhu B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 10:42:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837774#M1014429</guid>
      <dc:creator>shambhub</dc:creator>
      <dc:date>2015-04-15T10:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837775#M1014430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Qlikview the second parameter in the round function is not the number of decimals. It's the number you enter. Round( ...expression..., 2) will round up to the nearest even value. 1.10102 will round up to 2 and 2.3234 will round down to 2. If you want to use the round function to round to two decimals use &lt;STRONG&gt;Round(&lt;/STRONG&gt; &lt;EM&gt;...expr... &lt;/EM&gt;, &lt;STRONG&gt;0.01)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 10:59:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837775#M1014430</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-04-15T10:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837776#M1014431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;I achieved this by doing like below in the straight table.But, when i'm running this expression in the script end.The script is not&amp;nbsp; running and raises an error as Invalid Expression.&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;If(Floor(TP_POL_TO_DT)&amp;gt;Floor(Now()),&lt;/P&gt;&lt;P&gt;(SUM(TP_GrossPremium_LC_1)/((Floor((TP_POL_TO_DT))-(Floor(TP_POL_FM_DT)))))*(Floor((Now()))-Floor((TP_POL_FM_DT))), TP_GrossPremium_LC_1) as TP_EarnedPremium_LC_1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me what mistake i have done.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 11:12:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837776#M1014431</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-15T11:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837777#M1014432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;
&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*,&lt;/P&gt;
&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(Floor(TP_POL_TO_DT)&amp;gt;Floor(Now()),&lt;/P&gt;
&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(SUM(TP_GrossPremium_LC_1)/((Floor((TP_POL_TO_DT))-(Floor(TP_POL_FM_DT)))))*(Floor((Now()))-Floor((TP_POL_FM_DT))), TP_GrossPremium_LC_1) as TP_EarnedPremium_LC_1;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;1. That statement is missing a source reference. Where does the input data come from?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD ...stuff... FROM MySourceTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or LOAD ...stuff... RESIDENT TableCreatedEarlierInTheScript&lt;/P&gt;&lt;P&gt;2. You're using the SUM function without a Group By clause.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 11:30:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837777#M1014432</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-04-15T11:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837778#M1014433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;I have written the script in the table itself. I think no need to mention resident keyword for the script. Correct me if i'm wrong and please suggest me where i need to write Group By Clause and what are the fields it includes?&lt;/P&gt;&lt;P&gt;Please find the screen shot of my script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 11:43:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837778#M1014433</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-15T11:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837779#M1014434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try like below,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;As Gysbert suggest like below,&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;LOAD&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;If(Floor(TP_POL_TO_DT)&amp;gt;Floor(Now()),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(SUM(TP_GrossPremium_LC_1)/((Floor((TP_POL_TO_DT))-(Floor(TP_POL_FM_DT)))))*(Floor((Now()))-Floor((TP_POL_FM_DT))), TP_GrossPremium_LC_1) as TP_EarnedPremium_LC_1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM T_GI_POLICY&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;TP_COMP_CODE='001'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AND TP_CUST_CODE='111502'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;GROUP BY TP_POL_FM_DT,TP_POL_TO_DT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 11:45:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837779#M1014434</guid>
      <dc:creator />
      <dc:date>2015-04-15T11:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837780#M1014435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harsha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No Luck !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 12:00:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837780#M1014435</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-15T12:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837781#M1014436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use LOAD ... RESIDENT ... if you want to load data from a table you created earlier. If you don't want to keep that first table then perhaps you can do a preceding load instead:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyResultTable:&lt;/P&gt;&lt;P&gt;LOAD *, B+C as D; \\ this is the preceding load that uses the data from the next load statement as its source&lt;/P&gt;&lt;P&gt;LOAD A, B, C FROM MyTable;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 12:04:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837781#M1014436</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-04-15T12:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837782#M1014437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Your apporach is like below,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;OldTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Load *&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="line-height: 1.5em;"&gt;from source;&lt;/SPAN&gt;&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;New_Table:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Key,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(Floor(TP_POL_TO_DT)&amp;gt;Floor(Now()),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(SUM(TP_GrossPremium_LC_1)/((Floor((TP_POL_TO_DT))-(Floor(TP_POL_FM_DT)))))*(Floor((Now()))-Floor((TP_POL_FM_DT))), TP_GrossPremium_LC_1) as TP_EarnedPremium_LC_1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;resident OldTable &lt;SPAN style="line-height: 1.5em;"&gt;GROUP BY Key&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;;&lt;/SPAN&gt;&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;*Post your qvd &amp;amp; app on my mailid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 12:19:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837782#M1014437</guid>
      <dc:creator />
      <dc:date>2015-04-15T12:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837783#M1014438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me try as per your suggestion and let you&amp;nbsp; know the result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 13:25:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837783#M1014438</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-15T13:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837784#M1014439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried in both ways Preceding load and Resident concept .But, Same error it raising.I don't know where i'm doing the mistake.Please Identify the mistake in attached sample app.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 04:27:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837784#M1014439</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-16T04:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837785#M1014440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;Any Idea on this.Please suggest me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 06:07:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837785#M1014440</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-16T06:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837786#M1014441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope your issue will be resloved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 09:48:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837786#M1014441</guid>
      <dc:creator />
      <dc:date>2015-04-16T09:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format -Urgent</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837787#M1014442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You all !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 09:55:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format-Urgent/m-p/837787#M1014442</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-04-16T09:55:42Z</dc:date>
    </item>
  </channel>
</rss>

