<?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: Show All months related to Quarter in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2107135#M90424</link>
    <description>&lt;P&gt;Hi bhargavikn,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have added year as 2022 ,month as May-23 , thats the reason it shows different . Can you share you input data to investigate further .&lt;/P&gt;</description>
    <pubDate>Fri, 18 Aug 2023 12:36:18 GMT</pubDate>
    <dc:creator>Lakshmanan</dc:creator>
    <dc:date>2023-08-18T12:36:18Z</dc:date>
    <item>
      <title>Show All months related to Quarter</title>
      <link>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2106672#M90369</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;I'm trying to show all related months of Quarter in QuarterMonth column.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;TABLE width="359"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;Year&amp;nbsp;&lt;/TD&gt;
&lt;TD width="64"&gt;Quarter&lt;/TD&gt;
&lt;TD width="64"&gt;Month&lt;/TD&gt;
&lt;TD width="167"&gt;QuarterMonth&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;2022&lt;/TD&gt;
&lt;TD&gt;Q1&lt;/TD&gt;
&lt;TD&gt;Dec-22&lt;/TD&gt;
&lt;TD&gt;Q1 (Dec-22,Jan-23,Feb-23)&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;2023&lt;/TD&gt;
&lt;TD&gt;Q1&lt;/TD&gt;
&lt;TD&gt;Jan-23&lt;/TD&gt;
&lt;TD&gt;Q1 (Dec-22,Jan-23,Feb-23)&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;2023&lt;/TD&gt;
&lt;TD&gt;Q1&lt;/TD&gt;
&lt;TD&gt;Feb-23&lt;/TD&gt;
&lt;TD&gt;Q1 (Dec-22,Jan-23,Feb-23)&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me with the solution.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:28:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2106672#M90369</guid>
      <dc:creator>bhargavikn</dc:creator>
      <dc:date>2024-11-15T21:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: Show All months related to Quarter</title>
      <link>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2106778#M90380</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do a left join on Quarter&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;LEFT JOIN (Input_Data)&lt;/STRONG&gt;&lt;BR /&gt;Load * inline [&lt;BR /&gt;Month_ID, MonthName, Quarter&lt;/P&gt;
&lt;P&gt;1,Jan,Q1&lt;/P&gt;
&lt;P&gt;2,Feb,Q1&lt;/P&gt;
&lt;P&gt;3,Mar,Q1&lt;/P&gt;
&lt;P&gt;4,Apr,Q2&lt;/P&gt;
&lt;P&gt;5,May,Q2&lt;/P&gt;
&lt;P&gt;6,Jun,Q2&lt;/P&gt;
&lt;P&gt;7,Jul,Q3&lt;/P&gt;
&lt;P&gt;8,Aug,Q3&lt;/P&gt;
&lt;P&gt;9,Sep,Q3&lt;/P&gt;
&lt;P&gt;10,Oct,Q4&lt;/P&gt;
&lt;P&gt;11,Nov,Q4&lt;/P&gt;
&lt;P&gt;12,Dec,Q4&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[&lt;STRONG&gt;FinalTable&lt;/STRONG&gt;]:&lt;BR /&gt;Load Quarter,Year,Month,&lt;STRONG&gt;CONCAT(MonthName&amp;amp; '-'&amp;amp; Year,',') as Quarter_Months&lt;/STRONG&gt;&lt;BR /&gt;Resident [Input_Data]&lt;BR /&gt;group by Quarter,Year,Month&lt;BR /&gt;order by Month_ID;&lt;BR /&gt;drop table Input_Data;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lakshmanan_0-1692278872190.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/114641i1796B8888206536B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Lakshmanan_0-1692278872190.png" alt="Lakshmanan_0-1692278872190.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can Trim the year using Left(Year,2)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;Please mark as Closed if it resolved the issue.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 13:30:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2106778#M90380</guid>
      <dc:creator>Lakshmanan</dc:creator>
      <dc:date>2023-08-17T13:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Show All months related to Quarter</title>
      <link>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2107016#M90416</link>
      <description>&lt;P&gt;Hi Lakshmanan,&lt;/P&gt;
&lt;P&gt;Thank you for your reply. I have followed same steps but I'm getting wrong output&lt;/P&gt;
&lt;P&gt;Code:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bhargavikn_1-1692344252402.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/114684i9CCF1C3E6C870A24/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bhargavikn_1-1692344252402.png" alt="bhargavikn_1-1692344252402.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Output:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="bhargavikn_2-1692344298820.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/114685i0EBCAF43A8818550/image-size/medium?v=v2&amp;amp;px=400" role="button" title="bhargavikn_2-1692344298820.png" alt="bhargavikn_2-1692344298820.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Can you please guide me.&lt;/P&gt;
&lt;P&gt;And also, in your screenshot for May-23, it is showing months for 2022 year.&amp;nbsp; Please check.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 10:38:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2107016#M90416</guid>
      <dc:creator>bhargavikn</dc:creator>
      <dc:date>2023-08-18T10:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Show All months related to Quarter</title>
      <link>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2107135#M90424</link>
      <description>&lt;P&gt;Hi bhargavikn,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have added year as 2022 ,month as May-23 , thats the reason it shows different . Can you share you input data to investigate further .&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 12:36:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2107135#M90424</guid>
      <dc:creator>Lakshmanan</dc:creator>
      <dc:date>2023-08-18T12:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Show All months related to Quarter</title>
      <link>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2107499#M90437</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;you can use input data as below&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 144pt;" border="0" width="192" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD width="64" height="19" class="xl65" style="height: 14.5pt; width: 48pt;"&gt;Year&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;Month&lt;/TD&gt;
&lt;TD width="64" class="xl65" style="border-left: none; width: 48pt;"&gt;Quarter&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2022&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Jun-22&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2022&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Jul-22&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2022&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Aug-22&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2022&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Sep-22&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2022&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Oct-22&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2022&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Nov-22&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2022&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Dec-22&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2023&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Jan-23&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2023&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Feb-23&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2023&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Mar-23&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2023&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Apr-23&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2023&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;May-23&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2023&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Jun-23&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2023&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Jul-23&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 14.5pt;"&gt;
&lt;TD height="19" align="right" class="xl63" style="height: 14.5pt; border-top: none;"&gt;2023&lt;/TD&gt;
&lt;TD align="right" class="xl64" style="border-top: none; border-left: none;"&gt;Aug-23&lt;/TD&gt;
&lt;TD class="xl63" style="border-top: none; border-left: none;"&gt;Q3&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Required Output:&lt;/P&gt;
&lt;TABLE width="291px"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="62.9896px"&gt;Quarter&lt;/TD&gt;
&lt;TD width="164.427px"&gt;QuarterMonth&lt;/TD&gt;
&lt;TD width="62.9167px"&gt;Month&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="62.9896px"&gt;Q1&lt;/TD&gt;
&lt;TD width="164.427px"&gt;Q1 (Dec-22,Jan-23,Feb-23)&lt;/TD&gt;
&lt;TD width="62.9167px"&gt;Dec-22&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="62.9896px"&gt;Q1&lt;/TD&gt;
&lt;TD width="164.427px"&gt;Q1 (Dec-22,Jan-23,Feb-23)&lt;/TD&gt;
&lt;TD width="62.9167px"&gt;Jan-23&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="62.9896px"&gt;Q1&lt;/TD&gt;
&lt;TD width="164.427px"&gt;Q1 (Dec-22,Jan-23,Feb-23)&lt;/TD&gt;
&lt;TD width="62.9167px"&gt;Feb-23&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Sun, 20 Aug 2023 11:50:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2107499#M90437</guid>
      <dc:creator>bhargavikn</dc:creator>
      <dc:date>2023-08-20T11:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Show All months related to Quarter</title>
      <link>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2108478#M90525</link>
      <description>&lt;P&gt;[Input_Data]:&lt;BR /&gt;Load * inline [&lt;BR /&gt;Year1, Quarter, Month &lt;BR /&gt;2022, Q1, Dec-22 &lt;BR /&gt;2023, Q1, Jan-23 &lt;BR /&gt;2023, Q1, Feb-23&lt;BR /&gt;2023, Q2, Mar-23&lt;BR /&gt;2023, Q2, Apr-23&lt;BR /&gt;2023, Q3, May-23&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Left Join (Input_Data)&lt;BR /&gt;Load Quarter, Quarter &amp;amp;'('&amp;amp;Concat(Month,',') &amp;amp;')' as MonthName&lt;BR /&gt;Resident [Input_Data]&lt;BR /&gt;Group by Quarter;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lakshmanan_0-1692711062446.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/114930i06858E519A9D73B8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Lakshmanan_0-1692711062446.png" alt="Lakshmanan_0-1692711062446.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;Please mark as closed ,if it resolved the issue.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 13:31:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-All-months-related-to-Quarter/m-p/2108478#M90525</guid>
      <dc:creator>Lakshmanan</dc:creator>
      <dc:date>2023-08-22T13:31:34Z</dc:date>
    </item>
  </channel>
</rss>

