<?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: Chatting with ChatGPT about Qliksese in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Chatting-with-ChatGPT-about-Qliksese/m-p/2020561#M84280</link>
    <description>&lt;P&gt;I also experimented a bit with ChatGPT and it completely blew my mind! Just key in any pieces of loadscript it explains you, what this will do and even where to optimize.&lt;/P&gt;
&lt;P&gt;Considering, that this is still beta and that the focus so far most certainly hasn't been Qlik Loadscripting, this&amp;nbsp; is absolutely stunning! Imagine, how much more powerful this can get, once it's specifically trained.&lt;/P&gt;
&lt;P&gt;This can and imho most certainly will substantially change way coding of any kind will be done in the future.&lt;/P&gt;</description>
    <pubDate>Thu, 29 Dec 2022 09:48:24 GMT</pubDate>
    <dc:creator>Moritz</dc:creator>
    <dc:date>2022-12-29T09:48:24Z</dc:date>
    <item>
      <title>Chatting with ChatGPT about Qliksese</title>
      <link>https://community.qlik.com/t5/App-Development/Chatting-with-ChatGPT-about-Qliksese/m-p/2017625#M84279</link>
      <description>&lt;P&gt;Hi, I have asked ChatGTP to write some code that will show me the third business day of the week. I have been amazed at how fast and accurate it has been.&lt;/P&gt;
&lt;P&gt;Do you think it can be optimized? (al code in text format bellow)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MigueldelCampo_0-1671280261962.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/96420i151E3B65D805EA9A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MigueldelCampo_0-1671280261962.png" alt="MigueldelCampo_0-1671280261962.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;// Set up a calendar table to use for date calculations&lt;BR /&gt;Calendar:&lt;BR /&gt;LOAD&lt;BR /&gt;date(YearStart(year, month, 1) + rowNo() - 1) as date,&lt;BR /&gt;week(YearStart(year, month, 1) + rowNo() - 1) as week,&lt;BR /&gt;year(YearStart(year, month, 1) + rowNo() - 1) as year,&lt;BR /&gt;month(YearStart(year, month, 1) + rowNo() - 1) as month,&lt;BR /&gt;day(YearStart(year, month, 1) + rowNo() - 1) as day&lt;BR /&gt;FROM&lt;BR /&gt;[lib://calendar/calendar.qvd] (qvd);&lt;/P&gt;
&lt;P&gt;// Set up a table to store the 3rd business day for each week&lt;BR /&gt;ThirdBusinessDay:&lt;BR /&gt;LOAD&lt;BR /&gt;min(date) as third_business_day&lt;BR /&gt;RESIDENT&lt;BR /&gt;Calendar&lt;BR /&gt;WHERE&lt;BR /&gt;isweekday(date) = 1 and day &amp;gt;= 3;&lt;/P&gt;
&lt;P&gt;// Group by week to get the 3rd business day for each week&lt;BR /&gt;ThirdBusinessDay:&lt;BR /&gt;LOAD&lt;BR /&gt;third_business_day,&lt;BR /&gt;week,&lt;BR /&gt;year,&lt;BR /&gt;month&lt;BR /&gt;RESIDENT&lt;BR /&gt;ThirdBusinessDay&lt;BR /&gt;GROUP BY&lt;BR /&gt;week,&lt;BR /&gt;year,&lt;BR /&gt;month;&lt;/P&gt;
&lt;P&gt;// Drop the original calendar table&lt;BR /&gt;DROP TABLE Calendar;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 16:44:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chatting-with-ChatGPT-about-Qliksese/m-p/2017625#M84279</guid>
      <dc:creator>MigueldelCampo</dc:creator>
      <dc:date>2024-11-16T16:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Chatting with ChatGPT about Qliksese</title>
      <link>https://community.qlik.com/t5/App-Development/Chatting-with-ChatGPT-about-Qliksese/m-p/2020561#M84280</link>
      <description>&lt;P&gt;I also experimented a bit with ChatGPT and it completely blew my mind! Just key in any pieces of loadscript it explains you, what this will do and even where to optimize.&lt;/P&gt;
&lt;P&gt;Considering, that this is still beta and that the focus so far most certainly hasn't been Qlik Loadscripting, this&amp;nbsp; is absolutely stunning! Imagine, how much more powerful this can get, once it's specifically trained.&lt;/P&gt;
&lt;P&gt;This can and imho most certainly will substantially change way coding of any kind will be done in the future.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 09:48:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chatting-with-ChatGPT-about-Qliksese/m-p/2020561#M84280</guid>
      <dc:creator>Moritz</dc:creator>
      <dc:date>2022-12-29T09:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Chatting with ChatGPT about Qliksese</title>
      <link>https://community.qlik.com/t5/App-Development/Chatting-with-ChatGPT-about-Qliksese/m-p/2432243#M96700</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Can ChatGPT effectively answer questions and provide insights related to Qliksense datasets and dashboards?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 09:15:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Chatting-with-ChatGPT-about-Qliksese/m-p/2432243#M96700</guid>
      <dc:creator>Kathlyn</dc:creator>
      <dc:date>2024-03-19T09:15:40Z</dc:date>
    </item>
  </channel>
</rss>

