<?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 Unable to convert date into monty year format in Community Discussions</title>
    <link>https://community.jmp.com/t5/Community-Discussions/Unable-to-convert-date-into-monty-year-format/m-p/891371#M482</link>
    <description>&lt;P&gt;I have a excel sheet and I would like to tell JMP that it is monthly data. Dates in the format of dd-mm-yyyy. How hard I tried, it is taking dd-yyyy. Any suggestions?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 31 Jul 2025 17:43:56 GMT</pubDate>
    <dc:creator>srk80</dc:creator>
    <dc:date>2025-07-31T17:43:56Z</dc:date>
    <item>
      <title>Unable to convert date into monty year format</title>
      <link>https://community.jmp.com/t5/Community-Discussions/Unable-to-convert-date-into-monty-year-format/m-p/891371#M482</link>
      <description>&lt;P&gt;I have a excel sheet and I would like to tell JMP that it is monthly data. Dates in the format of dd-mm-yyyy. How hard I tried, it is taking dd-yyyy. Any suggestions?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 17:43:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Community-Discussions/Unable-to-convert-date-into-monty-year-format/m-p/891371#M482</guid>
      <dc:creator>srk80</dc:creator>
      <dc:date>2025-07-31T17:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to convert date into monty year format</title>
      <link>https://community.jmp.com/t5/Community-Discussions/Unable-to-convert-date-into-monty-year-format/m-p/892299#M483</link>
      <description>&lt;P&gt;Try this formua:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;new column("MonthYear", Input Format( "m/y" ), Format( "m/y", 10 ),formula(Date DMY( 1, Month( :ds ), Year( :ds ) )));&amp;nbsp;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Aug 2025 22:02:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Community-Discussions/Unable-to-convert-date-into-monty-year-format/m-p/892299#M483</guid>
      <dc:creator>ZF</dc:creator>
      <dc:date>2025-08-04T22:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to convert date into monty year format</title>
      <link>https://community.jmp.com/t5/Community-Discussions/Unable-to-convert-date-into-monty-year-format/m-p/935510#M505</link>
      <description>&lt;BLOCKQUOTE data-end="481" data-start="80"&gt;
&lt;P data-end="481" data-start="82"&gt;I had a similar issue while importing monthly data from Excel into JMP. Sometimes the problem is related to how the column format is recognized during import. You might try checking the column properties and setting the data type to &lt;STRONG data-end="323" data-start="315"&gt;Date&lt;/STRONG&gt; with the correct format, or adjusting the import settings so JMP reads the full date (dd-mm-yyyy). That helped in my case when working with monthly datasets.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P data-is-only-node="" data-is-last-node="" data-end="602" data-start="483"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Mar 2026 20:57:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Community-Discussions/Unable-to-convert-date-into-monty-year-format/m-p/935510#M505</guid>
      <dc:creator>Buttler</dc:creator>
      <dc:date>2026-03-15T20:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to convert date into monty year format</title>
      <link>https://community.jmp.com/t5/Community-Discussions/Unable-to-convert-date-into-monty-year-format/m-p/938592#M509</link>
      <description>&lt;P&gt;The first problem with date conversion is that, in the background, JMP is "reading" the date as the number of seconds since&amp;nbsp;&lt;SPAN&gt;January 1, 1904, 12:00:00 AM (and Excel "reads" it from&amp;nbsp;January 1, 1900 which is almost 4B seconds which we'll reach on&amp;nbsp;October 3, 2026 at 07:06:40)! That's why you will sometimes see values in the 3.9B range when converting dates.&lt;BR /&gt;&lt;BR /&gt;Second, although you can change the format of the time you are looking at, JMP will still "read" the time in the original imported format. For example, you I have a date of 1/15/2020 and I want to group all January dates in a MM/YYYY format (for graphing or tabulating), simply changing the format to MM/YYYY doesn't work - JMP will still "read" it as it's original imported date.&lt;BR /&gt;&lt;BR /&gt;That being said, the most successful I've been at converting dates so they can be used are:&lt;BR /&gt;&lt;BR /&gt;- For MM/YYYY from Date, I use:&amp;nbsp;Date DMY( 1, Month( :TRANSACTION_DATE ), Year( :TRANSACTION_DATE ) ) with the MM/YYYY format.&lt;BR /&gt;&lt;BR /&gt;- For YYYYQq from Date, I use:&amp;nbsp;&lt;/SPAN&gt;Date DMY(&lt;SPAN&gt;1,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Floor( (Month( :TRANSACTION_DATE ) - 1) / 3 ) * 3 + 1,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Year( :TRANSACTION_DATE )&lt;/SPAN&gt;) with the YYYYQq format (i.e. 2020Q1).&lt;/P&gt;
&lt;P&gt;Both essentially take all of the dates in a particular month and put them on the first day of the month or quarter, respectively. Seems like a weird workaround, but it works for doing what you need for Tabulating, Time Series, Graph Builder, etc.&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Apr 2026 02:01:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Community-Discussions/Unable-to-convert-date-into-monty-year-format/m-p/938592#M509</guid>
      <dc:creator>mischa869</dc:creator>
      <dc:date>2026-04-01T02:01:45Z</dc:date>
    </item>
  </channel>
</rss>

