<?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: Convert Character Timestamp to Numeric Date in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Convert-Character-Timestamp-to-Numeric-Date/m-p/868423#M103132</link>
    <description>&lt;P&gt;Here is one way to handle this.&lt;/P&gt;
&lt;P&gt;Create a numeric column and set the format to be displayed to&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;yyyy-mm-dd&lt;/P&gt;
&lt;P&gt;Then set the columns formula to&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Date MDY(
	Num( Substr( :Timestamp, 5, 2 ) ),
	Num( Substr( :Timestamp, 7, 2 ) ),
	Num( Substr( :Timestamp, 1, 4 ) )
)&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-1744730921230.png" style="width: 694px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74883iB648AD17475378D4/image-dimensions/694x375?v=v2" width="694" height="375" role="button" title="txnelson_0-1744730921230.png" alt="txnelson_0-1744730921230.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Apr 2025 15:28:54 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2025-04-15T15:28:54Z</dc:date>
    <item>
      <title>Convert Character Timestamp to Numeric Date</title>
      <link>https://community.jmp.com/t5/Discussions/Convert-Character-Timestamp-to-Numeric-Date/m-p/868386#M103130</link>
      <description>&lt;P&gt;I've read through past discussion posts trying to find a solution to converting a timestamp that is character/nominal into a date that is numeric/ordinal. So far I've tried the following approaches without success:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Reimporting the .CSV with numeric/ordinal selected&lt;/LI&gt;
&lt;LI&gt;Formula using informat and format&lt;/LI&gt;
&lt;LI&gt;Recoding&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Does anyone have a formula suggestion that I can use to transform 'Timestamp' into the format identified in 'Ideal Timestamp'?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 14:56:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Convert-Character-Timestamp-to-Numeric-Date/m-p/868386#M103130</guid>
      <dc:creator>Sarah_Gagne</dc:creator>
      <dc:date>2025-04-15T14:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Character Timestamp to Numeric Date</title>
      <link>https://community.jmp.com/t5/Discussions/Convert-Character-Timestamp-to-Numeric-Date/m-p/868408#M103131</link>
      <description>&lt;P&gt;Use Word + In Format&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;In Format(Word(1, :Timestamp, " "), "YYYYMMDD")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1744730374526.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74879i070B6178CD7A9EA7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1744730374526.png" alt="jthi_1-1744730374526.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can also try to play around with Format Pattern but it might not work due to milliseconds. If you wish to have the time left, use word with "." separator and modify the format for informat as necessary&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 15:20:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Convert-Character-Timestamp-to-Numeric-Date/m-p/868408#M103131</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-04-15T15:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Character Timestamp to Numeric Date</title>
      <link>https://community.jmp.com/t5/Discussions/Convert-Character-Timestamp-to-Numeric-Date/m-p/868423#M103132</link>
      <description>&lt;P&gt;Here is one way to handle this.&lt;/P&gt;
&lt;P&gt;Create a numeric column and set the format to be displayed to&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;yyyy-mm-dd&lt;/P&gt;
&lt;P&gt;Then set the columns formula to&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Date MDY(
	Num( Substr( :Timestamp, 5, 2 ) ),
	Num( Substr( :Timestamp, 7, 2 ) ),
	Num( Substr( :Timestamp, 1, 4 ) )
)&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-1744730921230.png" style="width: 694px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74883iB648AD17475378D4/image-dimensions/694x375?v=v2" width="694" height="375" role="button" title="txnelson_0-1744730921230.png" alt="txnelson_0-1744730921230.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 15:28:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Convert-Character-Timestamp-to-Numeric-Date/m-p/868423#M103132</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-04-15T15:28:54Z</dc:date>
    </item>
  </channel>
</rss>

