<?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: Conversion of date format in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020856#M85666</link>
    <description>&lt;P&gt;The data we received is only for Dec month..&lt;/P&gt;
&lt;P&gt;But in list box its showing all the months.&lt;/P&gt;
&lt;P&gt;i.e., 12-01-2022 to 12-12-2022&lt;/P&gt;
&lt;P&gt;And remaining dates as 13-12-2022 till 28-12-2022&lt;/P&gt;
&lt;P&gt;Format: DDMMYYYY for all dates&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 30 Dec 2022 15:35:16 GMT</pubDate>
    <dc:creator>nadeembdhl99</dc:creator>
    <dc:date>2022-12-30T15:35:16Z</dc:date>
    <item>
      <title>Conversion of date format</title>
      <link>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020778#M85664</link>
      <description>&lt;P&gt;Dear team,&lt;/P&gt;
&lt;P&gt;I have an issue.&lt;/P&gt;
&lt;P&gt;The date column from my table&amp;nbsp; has both formats in it i.e., 'dd-mm-yyyy' and 'mm-dd-yyyy',&lt;/P&gt;
&lt;P&gt;how to resolve it?&lt;/P&gt;
&lt;P&gt;ex:&lt;/P&gt;
&lt;P&gt;DD-MM-YYYY&lt;/P&gt;
&lt;P&gt;01-12-2022&lt;/P&gt;
&lt;P&gt;and&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MM-DD-YYYY&lt;/P&gt;
&lt;P&gt;02-12-2022&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 16:44:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020778#M85664</guid>
      <dc:creator>nadeembdhl99</dc:creator>
      <dc:date>2024-11-16T16:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion of date format</title>
      <link>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020820#M85665</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;How are you able to tell the difference between the two formats?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2022 13:51:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020820#M85665</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2022-12-30T13:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion of date format</title>
      <link>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020856#M85666</link>
      <description>&lt;P&gt;The data we received is only for Dec month..&lt;/P&gt;
&lt;P&gt;But in list box its showing all the months.&lt;/P&gt;
&lt;P&gt;i.e., 12-01-2022 to 12-12-2022&lt;/P&gt;
&lt;P&gt;And remaining dates as 13-12-2022 till 28-12-2022&lt;/P&gt;
&lt;P&gt;Format: DDMMYYYY for all dates&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2022 15:35:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020856#M85666</guid>
      <dc:creator>nadeembdhl99</dc:creator>
      <dc:date>2022-12-30T15:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion of date format</title>
      <link>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020907#M85667</link>
      <description>&lt;P&gt;Since you have different date formats in one field, you can define your desired output using the Alt() function.&lt;/P&gt;
&lt;P&gt;Perhaps as below&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Date(Alt(Date#(DateColumnWithTwoDifferentFormats,'DD-MM-YYYY'),Date#(DateColumnWithTwoDifferentFormats,'MM-DD-YYYY')),'DDMMYYYY') as NewDateField&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 30 Dec 2022 17:33:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020907#M85667</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2022-12-30T17:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion of date format</title>
      <link>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020911#M85668</link>
      <description>&lt;P&gt;I've tried this code but didn't workout...&lt;/P&gt;
&lt;P&gt;As the other format takes month as date and date as month..&lt;/P&gt;
&lt;P&gt;Like if its 12-10-2022&lt;/P&gt;
&lt;P&gt;It'll show 12th of october&lt;/P&gt;
&lt;P&gt;but it actually is 10th of december.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2022 18:14:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020911#M85668</guid>
      <dc:creator>nadeembdhl99</dc:creator>
      <dc:date>2022-12-30T18:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion of date format</title>
      <link>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020977#M85669</link>
      <description>&lt;P&gt;Please find the attached corresponding files for better understanding&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2023 04:20:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Conversion-of-date-format/m-p/2020977#M85669</guid>
      <dc:creator>nadeembdhl99</dc:creator>
      <dc:date>2023-01-02T04:20:27Z</dc:date>
    </item>
  </channel>
</rss>

