<?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 Difference between to dates in years and months in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609157#M45237</link>
    <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I want to get the difference between two dates in year and month in my case i want mesure the seniority of salary&lt;/P&gt;&lt;P&gt;x by calcul the diffence between current date and hiring date. i used the function AGE to retourn the diffence.&lt;/P&gt;&lt;P&gt;For exemple: AGE(05/08/2019-05/04/2016) retourn 3 but i want to get 3,4 (years+months).&lt;/P&gt;&lt;P&gt;My question is how i get the diffence between two date in years and months ? thank you in advance.&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 20:19:31 GMT</pubDate>
    <dc:creator>08748190</dc:creator>
    <dc:date>2024-11-16T20:19:31Z</dc:date>
    <item>
      <title>Difference between to dates in years and months</title>
      <link>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609157#M45237</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I want to get the difference between two dates in year and month in my case i want mesure the seniority of salary&lt;/P&gt;&lt;P&gt;x by calcul the diffence between current date and hiring date. i used the function AGE to retourn the diffence.&lt;/P&gt;&lt;P&gt;For exemple: AGE(05/08/2019-05/04/2016) retourn 3 but i want to get 3,4 (years+months).&lt;/P&gt;&lt;P&gt;My question is how i get the diffence between two date in years and months ? thank you in advance.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:19:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609157#M45237</guid>
      <dc:creator>08748190</dc:creator>
      <dc:date>2024-11-16T20:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between to dates in years and months</title>
      <link>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609207#M45246</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can try:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Floor( (DateEnd-DateStart) / 365) 
+ 
(
 (
   (DateEnd-DateStart) / 365) - Floor( (DateEnd-DateStart) / 365)
  )
 / (365-12)
)&lt;/LI-CODE&gt;&lt;P&gt;It's not a beautiful formula, but its exactly giving you the years and months.&lt;/P&gt;&lt;P&gt;Jordy&lt;/P&gt;&lt;P&gt;Climber&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 06:43:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609207#M45246</guid>
      <dc:creator>JordyWegman</dc:creator>
      <dc:date>2019-08-05T06:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between to dates in years and months</title>
      <link>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609217#M45247</link>
      <description>&lt;P&gt;Maybe like this&lt;/P&gt;&lt;P&gt;=Age(MakeDate(2019,08,05),MakeDate(2016,04,05))&amp;amp;','&amp;amp;Mod(Floor((MakeDate(2019,08,05) - MakeDate(2016,04,05))/30.4),12)&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 07:18:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609217#M45247</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2019-08-05T07:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between to dates in years and months</title>
      <link>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609225#M45249</link>
      <description>&lt;P&gt;maybe like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=date(interval(date#('05/08/2019','DD/MM/YYYY')- date#('05/04/2016','DD/MM/YYYY')),'YY-MM')&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 05 Aug 2019 07:25:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609225#M45249</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2019-08-05T07:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between to dates in years and months</title>
      <link>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609226#M45250</link>
      <description>&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2019 07:25:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Difference-between-to-dates-in-years-and-months/m-p/1609226#M45250</guid>
      <dc:creator>08748190</dc:creator>
      <dc:date>2019-08-05T07:25:53Z</dc:date>
    </item>
  </channel>
</rss>

