<?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 date calculation in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878148#M104098</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc"&gt;In Excel, I use the date function to get the date (d/m/y) from the year and the day of year (ex.: =DATE(2025;1;32)&amp;nbsp; .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc"&gt; How can I get the same formula in JMP?&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jun 2025 12:25:15 GMT</pubDate>
    <dc:creator>Françoise</dc:creator>
    <dc:date>2025-06-04T12:25:15Z</dc:date>
    <item>
      <title>date calculation</title>
      <link>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878148#M104098</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc"&gt;In Excel, I use the date function to get the date (d/m/y) from the year and the day of year (ex.: =DATE(2025;1;32)&amp;nbsp; .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Y2IQFc"&gt; How can I get the same formula in JMP?&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 12:25:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878148#M104098</guid>
      <dc:creator>Françoise</dc:creator>
      <dc:date>2025-06-04T12:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: date calculation</title>
      <link>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878160#M104101</link>
      <description>&lt;P&gt;This function will return the date from the year and the day of the year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
yd_date = Function( {year, day}, {default local},
	dat = Format( In Years( year - Year( 0 ) ) + In Days( day ), "d/m/y" );
	Return( dat )
);
the_date = yd_date( 2025, 75 );
//"16/03/2025"&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Jun 2025 12:48:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878160#M104101</guid>
      <dc:creator>mmarchandFSLR</dc:creator>
      <dc:date>2025-06-04T12:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: date calculation</title>
      <link>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878161#M104102</link>
      <description>&lt;P&gt;Some combination of date functions most likely&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/18.1/jmp/date-and-time-functions.shtml" target="_self"&gt; JSL Syntax Reference &amp;gt; JSL Functions, Operators, and Messages &amp;gt; Date and Time Functions&lt;/A&gt;&amp;nbsp;. For example&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Date DMY(1, 1, 2025) + In Days(32 - 1)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Date Increment(Date DMY(1, 1, 2025), "day", 32 - 1, "start")&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Jun 2025 12:48:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878161#M104102</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-06-04T12:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: date calculation</title>
      <link>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878264#M104112</link>
      <description>&lt;P&gt;There is a handy utility in this addin by&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3552"&gt;@brady_brady&lt;/a&gt;&amp;nbsp;: Special formula columns &amp;gt; Custom date formula writer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A title="Data Table Tools addin" href="https://community.jmp.com/t5/JMP-Add-Ins/Data-Table-Tools-Add-in/ta-p/28582" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMP-Add-Ins/Data-Table-Tools-Add-in/ta-p/28582&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 07:14:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878264#M104112</guid>
      <dc:creator>markschahl</dc:creator>
      <dc:date>2025-06-05T07:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: date calculation</title>
      <link>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878319#M104116</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for your answers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use this formula:&amp;nbsp;&lt;/P&gt;
&lt;PRE class="language-jsl"&gt;&lt;CODE&gt;Date DMY(1, 1, 2025) + In Days(32 - 1)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;thanks for all these informations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 12:46:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/date-calculation/m-p/878319#M104116</guid>
      <dc:creator>Françoise</dc:creator>
      <dc:date>2025-06-05T12:46:35Z</dc:date>
    </item>
  </channel>
</rss>

