<?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: Format Column values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Format-Column-values/m-p/397291#M148011</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;You can use Year(Date) as Year, and 'Q' &amp;amp; Ceil(Month(Date)/3) as Quarter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For changing Y/N to Yes/No you can use: if(Fieldname='Y','Yes', 'No') as Fieldname&lt;/P&gt;&lt;P&gt;(Assuming it only has Y/N values.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Feb 2013 05:44:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-02-04T05:44:25Z</dc:date>
    <item>
      <title>Format Column values</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Column-values/m-p/397289#M148009</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 am new to Qlikview. I would like to know if there is any way to split the date column as year, quarters (Q1,Q2,Q3,Q4) based on the months at the time of loading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also would like to know if I could change the vvalues (Y as Yes, N as No ) at the time of loading of the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 05:20:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Column-values/m-p/397289#M148009</guid>
      <dc:creator />
      <dc:date>2013-02-04T05:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Format Column values</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Column-values/m-p/397290#M148010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, u can split the date field as year, quarter n months,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can also change the values Y as Yes n N as No&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for this if(ur fieldname='Y','Yes',if(ur fieldname='N','No'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Post ur date sample.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 05:41:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Column-values/m-p/397290#M148010</guid>
      <dc:creator>khadeer</dc:creator>
      <dc:date>2013-02-04T05:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Format Column values</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Column-values/m-p/397291#M148011</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;You can use Year(Date) as Year, and 'Q' &amp;amp; Ceil(Month(Date)/3) as Quarter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For changing Y/N to Yes/No you can use: if(Fieldname='Y','Yes', 'No') as Fieldname&lt;/P&gt;&lt;P&gt;(Assuming it only has Y/N values.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 05:44:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Column-values/m-p/397291#M148011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-04T05:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Format Column values</title>
      <link>https://community.qlik.com/t5/QlikView/Format-Column-values/m-p/397292#M148012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Senthil ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For Year and Quarter ,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(left(QuarterName(FIELDNAME),7)='Jan-Mar','Q1',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(left(QuarterName(FIELDNAME),7)='Apr-Jun','Q2',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(left(QuarterName(FIELDNAME),7)='Jul-Sep','Q3',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(left(QuarterName(FIELDNAME),7)='Oct-Dec','Q4')))) as Quarter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year(FIELDNAME) as Year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For changing values ,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(FIELDNAME='Y','YES','NO') as FIELDNAME .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls replace FIELDNAME with your respective Date column .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you .. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karthick V.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2013 05:47:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Format-Column-values/m-p/397292#M148012</guid>
      <dc:creator>karthickv</dc:creator>
      <dc:date>2013-02-04T05:47:43Z</dc:date>
    </item>
  </channel>
</rss>

