<?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 Change format to dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661236#M543029</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 have in my dashboard, a straight table with several dimension which are dates in format "DD-MM-YYYY". &lt;/P&gt;&lt;P&gt;I need to show these dates in format "MMM-YY".&lt;/P&gt;&lt;P&gt;How I can do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jun 2014 14:46:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-06-11T14:46:25Z</dc:date>
    <item>
      <title>Change format to dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661236#M543029</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 have in my dashboard, a straight table with several dimension which are dates in format "DD-MM-YYYY". &lt;/P&gt;&lt;P&gt;I need to show these dates in format "MMM-YY".&lt;/P&gt;&lt;P&gt;How I can do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:46:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661236#M543029</guid>
      <dc:creator />
      <dc:date>2014-06-11T14:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Change format to dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661237#M543030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the date() function to show the dates in the format you need. date(MyDate, 'MMM-YY'). You can do this in the script or in an expression (or a calculated dimension if you want to format a date dimension).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:48:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661237#M543030</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-06-11T14:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Change format to dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661238#M543031</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 the Document Properties | Number tab, select Date and enter &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;MMM-YY as the format or else use a Date(..., 'MMM-YY') to format the field on loading. This will avoid the need to create a calculated dimension.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Jonathan&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:49:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661238#M543031</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-06-11T14:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Change format to dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661239#M543032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does QV already know it's a date?&amp;nbsp; If it does, you can simply do:&lt;/P&gt;&lt;P&gt;date(YourField, 'MMM-YY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, if QV isn't recognizing the field as a date, you must do:&lt;/P&gt;&lt;P&gt;date(date#(YourField,'DD-MM-YYYY'),'MMM-YY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're using a bar chart, or the like, (where you want to see only a single bar for a month), you need to use the monthstart() function around either of the two expressions above in order to only show one (if not, it will show a different bar for each day of the month that you have data):&lt;/P&gt;&lt;P&gt;date(monthstart(YourField), 'MMM-YY')&lt;/P&gt;&lt;P&gt;date(date#(monthstart(YourField),'DD-MM-YYYY'),'MMM-YY')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 14:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661239#M543032</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2014-06-11T14:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Change format to dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661240#M543033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:09:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661240#M543033</guid>
      <dc:creator />
      <dc:date>2014-06-11T15:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Change format to dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661241#M543034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:10:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661241#M543034</guid>
      <dc:creator />
      <dc:date>2014-06-11T15:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: Change format to dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661242#M543035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:10:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-format-to-dimension/m-p/661242#M543035</guid>
      <dc:creator />
      <dc:date>2014-06-11T15:10:10Z</dc:date>
    </item>
  </channel>
</rss>

