<?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 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881143#M1001546</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Script Main Page If you Set Date Format='MM/DD' then you can use globally.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 30 May 2015 15:01:33 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-05-30T15:01:33Z</dc:date>
    <item>
      <title>Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881139#M1001542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;I want to format date in straight table. I want all the date fields in mm/dd format, ie (01/20). &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: 12px;"&gt;&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: 12px;"&gt;Earlier I had used the following script .. Date (field name, 'MM/DD') but this has to be individually applied to each dimension field, I have 10 date fields in my table and dont want to individually apply to all. How can I do it globally?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 09:13:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881139#M1001542</guid>
      <dc:creator />
      <dc:date>2015-05-30T09:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881140#M1001543</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;In Script&lt;/P&gt;&lt;P&gt;SET DateFormat='MM/DD';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then use Date(DateFieldName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 09:17:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881140#M1001543</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-05-30T09:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881141#M1001544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌did you try the date format definition in the number tab of the chart properties?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 11:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881141#M1001544</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-05-30T11:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881142#M1001545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, if you want this MM/DD format for all your dates&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can modify the variables that automatic create at the top of the script, see this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep='.';&lt;/P&gt;&lt;P&gt;SET DecimalSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$U #.##0,00;($U #.##0,00)';&lt;/P&gt;&lt;P&gt;SET TimeFormat='hh:mm:ss TT';&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET DateFormat='DD/MM/YYYY';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff] TT';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 14:37:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881142#M1001545</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2015-05-30T14:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881143#M1001546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Script Main Page If you Set Date Format='MM/DD' then you can use globally.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 15:01:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881143#M1001546</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-30T15:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Date Format</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881144#M1001547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="87984" alt="QlikCommunity_Thread_166140_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/87984_QlikCommunity_Thread_166140_Pic1.JPG" style="height: 344px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="87985" alt="QlikCommunity_Thread_166140_Pic2.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/87985_QlikCommunity_Thread_166140_Pic2.JPG" style="height: 331px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="87989" alt="QlikCommunity_Thread_166140_Pic3.JPG" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/87989_QlikCommunity_Thread_166140_Pic3.JPG" style="height: 406px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="87990" alt="QlikCommunity_Thread_166140_Pic4.JPG" class="image-4 jive-image" src="https://community.qlik.com/legacyfs/online/87990_QlikCommunity_Thread_166140_Pic4.JPG" style="height: 346px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 May 2015 16:53:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Format/m-p/881144#M1001547</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-05-30T16:53:34Z</dc:date>
    </item>
  </channel>
</rss>

