<?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: Changing Date Format from Nominal to Numerical Data in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/817002#M99643</link>
    <description>&lt;P&gt;No error message. I have JMP 15 and windows 10.&lt;/P&gt;</description>
    <pubDate>Thu, 21 Nov 2024 04:31:54 GMT</pubDate>
    <dc:creator>dn610</dc:creator>
    <dc:date>2024-11-21T04:31:54Z</dc:date>
    <item>
      <title>Changing Date Format from Nominal to Numerical Data</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/816872#M99635</link>
      <description>&lt;P&gt;Hi, I would like to change the below date field, which is a nominal field, to m/d/y format in jsl. Please help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dn610_0-1732151877399.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70462iDAC27CF371E30548/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dn610_0-1732151877399.png" alt="dn610_0-1732151877399.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 01:19:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/816872#M99635</guid>
      <dc:creator>dn610</dc:creator>
      <dc:date>2024-11-21T01:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Date Format from Nominal to Numerical Data</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/816976#M99637</link>
      <description>&lt;P&gt;Create a new numeric column&lt;/P&gt;
&lt;P&gt;In the Col Info dialog window, set the format to m/d/y&lt;/P&gt;
&lt;P&gt;Set a formula for the column of&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Informat( :Day of Process Date, "Format Pattern", "&amp;lt;Month&amp;gt; &amp;lt;D&amp;gt;,  &amp;lt;YYYY&amp;gt;" )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1732157625331.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70463iB065213DF147EEAC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1732157625331.png" alt="txnelson_0-1732157625331.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is a script that when run creates the above example data table&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Table( "Format Pattern",
	Add Rows( 1 ),
	New Column( "Day of Process Date",
		Character,
		"Nominal",
		Set Values( {"November 8, 2024"} )
	),
	New Column( "New date",
		Numeric,
		"Nominal",
		Format( "m/d/y", 12 ),
		Input Format( "m/d/y" ),
		Formula(
			Informat(
				:Day of Process Date,
				"Format Pattern",
				"&amp;lt;Month&amp;gt; &amp;lt;D&amp;gt;,  &amp;lt;YYYY&amp;gt;"
			)
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 02:55:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/816976#M99637</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-11-21T02:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Date Format from Nominal to Numerical Data</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/816987#M99641</link>
      <description>&lt;P&gt;When I tried to run the sample script above, the New date column doesn't populate for me. I also tried doing adding the formula manually, and it still doesn't work.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dn610_0-1732160983863.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70465iE3C755B4712E0E56/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dn610_0-1732160983863.png" alt="dn610_0-1732160983863.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 03:50:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/816987#M99641</guid>
      <dc:creator>dn610</dc:creator>
      <dc:date>2024-11-21T03:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Date Format from Nominal to Numerical Data</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/817001#M99642</link>
      <description>&lt;P&gt;What version of JMP are you using and on what operating system.&lt;/P&gt;
&lt;P&gt;I ran the code on both JMPPro 18 and JMPPro 16 on a Windows 11 and it ran without an issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have any messages in the log?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 04:02:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/817001#M99642</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-11-21T04:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Date Format from Nominal to Numerical Data</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/817002#M99643</link>
      <description>&lt;P&gt;No error message. I have JMP 15 and windows 10.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 04:31:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/817002#M99643</guid>
      <dc:creator>dn610</dc:creator>
      <dc:date>2024-11-21T04:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Date Format from Nominal to Numerical Data</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/817022#M99644</link>
      <description>&lt;P&gt;Format Pattern was released in JMP 16 so that is why the formula does not work.&amp;nbsp; Here is a formula that works in JMP 15&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If( Row() == 1,
	monthList = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
	}
);
Date MDY(
	Contains( monthList, Word( 1, :Day of Process Date, ", " ) ),
	Num( Word( 2, :Day of Process Date, ", " ) ),
	Num( Word( 3, :Day of Process Date, ", " ) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Nov 2024 05:42:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/817022#M99644</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-11-21T05:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Date Format from Nominal to Numerical Data</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/817269#M99660</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 15:51:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Date-Format-from-Nominal-to-Numerical-Data/m-p/817269#M99660</guid>
      <dc:creator>dn610</dc:creator>
      <dc:date>2024-11-21T15:51:03Z</dc:date>
    </item>
  </channel>
</rss>

