<?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: Unusual Date format issue hh:mm:ss - yyyymmdd in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382291#M63300</link>
    <description>&lt;P&gt;If you have JMP 16, there is a new Column Property&amp;gt; Format option called Format Pattern that might be of assistance with this as well. See this &lt;A href="https://www.jmp.com/support/help/en/16.0/#page/jmp/custom-date-time-formatting-with-format-patterns.shtml" target="_self"&gt;description&lt;/A&gt;. You can start with a character based column, change it to numeric and then change the format to Format Pattern.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also you can change the output format to be different than the input format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is another way and I this is scriptable too!&lt;/P&gt;</description>
    <pubDate>Tue, 04 May 2021 18:39:31 GMT</pubDate>
    <dc:creator>Chris_Kirchberg</dc:creator>
    <dc:date>2021-05-04T18:39:31Z</dc:date>
    <item>
      <title>Unusual Date format issue hh:mm:ss - yyyymmdd</title>
      <link>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382164#M63282</link>
      <description>&lt;P&gt;I need to open a log file from a tool that is in simple Tab separated format. This in itself isn't an issue - JMP is the only program I can find that will open the file as it contains the Temperature and Humidity measured every minute since Feb 2012 - it is 184Mb in size!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My issue is the date format in the file - an example is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;17:43:14 - 20120222&lt;/P&gt;&lt;P&gt;hh:mm:ss - yyyymmdd&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use this for filtering but, of course, JMP sees it as a Character data type.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using Left and Right in Formulas I have been able to get to a point where I have the Time and Date separately as Character fields. My Date formula looks like this:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;&lt;STRONG&gt;Right( Right( :Time Date, 8 ), 2 ) || "/" || Left( Right( Right( :Time Date, 8 ), 4 ), 2 ) || "/" || Left( Right( :Time Date, 8 ), 4 )&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RichardSlack_0-1620127219569.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/32578iC4E351271C8A115E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RichardSlack_0-1620127219569.png" alt="RichardSlack_0-1620127219569.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But I am lacking the knowledge to go the last step to get a date and Time in a Continuous Numeric format - e.g. ddMMMyyyy hh:mm:ss&lt;/P&gt;&lt;P&gt;Can anyone suggest the best way to do this please? I am happy to look at Scripting options or Formula based options.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:29:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382164#M63282</guid>
      <dc:creator>RichardSlack</dc:creator>
      <dc:date>2023-06-10T23:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Unusual Date format issue hh:mm:ss - yyyymmdd</title>
      <link>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382186#M63284</link>
      <description>&lt;P&gt;Here is the formula to create a new JMP date/time column from your data input&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dt.PNG" style="width: 488px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/32579i318C3EF84E52AD72/image-size/large?v=v2&amp;amp;px=999" role="button" title="dt.PNG" alt="dt.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Informat( Trim( Word( 2, :Time Date, "-" ) ), "yyyymmdd" ) + Informat(
	Trim( Word( 1, :Time Date, "-" ) ),
	"h:m:s"
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 May 2021 11:52:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382186#M63284</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-05-04T11:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Unusual Date format issue hh:mm:ss - yyyymmdd</title>
      <link>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382191#M63285</link>
      <description>&lt;P&gt;Many thanks for that - I had just come across the Informat function and was working through how to use it when your response came through. This is a huge relief as I was beginning to think it was time to give up!&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 11:55:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382191#M63285</guid>
      <dc:creator>RichardSlack</dc:creator>
      <dc:date>2021-05-04T11:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Unusual Date format issue hh:mm:ss - yyyymmdd</title>
      <link>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382196#M63286</link>
      <description>Welcome to the Community!  I am also enthused that you were already on the path towards your own solution.</description>
      <pubDate>Tue, 04 May 2021 12:15:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382196#M63286</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-05-04T12:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Unusual Date format issue hh:mm:ss - yyyymmdd</title>
      <link>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382291#M63300</link>
      <description>&lt;P&gt;If you have JMP 16, there is a new Column Property&amp;gt; Format option called Format Pattern that might be of assistance with this as well. See this &lt;A href="https://www.jmp.com/support/help/en/16.0/#page/jmp/custom-date-time-formatting-with-format-patterns.shtml" target="_self"&gt;description&lt;/A&gt;. You can start with a character based column, change it to numeric and then change the format to Format Pattern.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also you can change the output format to be different than the input format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is another way and I this is scriptable too!&lt;/P&gt;</description>
      <pubDate>Tue, 04 May 2021 18:39:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Unusual-Date-format-issue-hh-mm-ss-yyyymmdd/m-p/382291#M63300</guid>
      <dc:creator>Chris_Kirchberg</dc:creator>
      <dc:date>2021-05-04T18:39:31Z</dc:date>
    </item>
  </channel>
</rss>

