<?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: Timestamp question in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Timestamp-question/m-p/882788#M104695</link>
    <description>&lt;P&gt;And in more general remove the date of time from the timestamp. If we assume you have correctly formatted data in column called TIMESTAMP, you can use quick formula from right click menu&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1751438792613.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77684i49A96CE08CF085F1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1751438792613.png" alt="jthi_0-1751438792613.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And it will give you the formula you would use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:TIMESTAMP - Time Of Day(:TIMESTAMP)&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-1751438831771.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77685i969843508C9F22FB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1751438831771.png" alt="jthi_1-1751438831771.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can verify that values have changed by changing the format to Best&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1751438870554.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77686i6AF61E3F0918D248/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1751438870554.png" alt="jthi_2-1751438870554.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jul 2025 06:48:17 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-07-02T06:48:17Z</dc:date>
    <item>
      <title>Timestamp question</title>
      <link>https://community.jmp.com/t5/Discussions/Timestamp-question/m-p/882759#M104692</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I am challenged by the removal of a timestamp in a cell. See example. 01/07/2025 12:00:00 AM&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I want to remove the 12:00:00 AM and achieve this&amp;nbsp; 01/07/2022.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you in advance for your assistance.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 02:54:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Timestamp-question/m-p/882759#M104692</guid>
      <dc:creator>Mawkish</dc:creator>
      <dc:date>2025-07-02T02:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp question</title>
      <link>https://community.jmp.com/t5/Discussions/Timestamp-question/m-p/882779#M104693</link>
      <description>&lt;P&gt;All you need to do is to change the display format for your column.&lt;/P&gt;
&lt;P&gt;JMP date/time values are a numeric value of the number of seconds since 12 AM Jan 1, 1904.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Therefore, JMP's numeric value for&amp;nbsp;01/07/2025 12:00:00 AM is the same as the numeric value of&amp;nbsp;01/07/2025&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;withTime = informat("01/07/2025 12:00:00 AM","m/d/y h:m:s");
show(format(withTime,"fixed dec",12,2));
onlyDate = informat("01/07/2025","m/d/y");
show(format(onlyDate,"fixed dec",12,2));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Format(withTime, "fixed dec", 12, 2) = "3819052800.0";
Format(onlyDate, "fixed dec", 12, 2) = "3819052800.0";&lt;/PRE&gt;
&lt;P&gt;Just change the format of the column to m/d/y and you will have what you want.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 04:06:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Timestamp-question/m-p/882779#M104693</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-07-02T04:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp question</title>
      <link>https://community.jmp.com/t5/Discussions/Timestamp-question/m-p/882786#M104694</link>
      <description>&lt;P&gt;In addition to the response already given, it is possible to remove the time of day; in your case 12:00:00; from a date using JSL:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:Date - Time Of Day( :Date )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;All that remains to do is the changing of the column format:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ressel_0-1751438734764.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77683iFD76290636954FA7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ressel_0-1751438734764.png" alt="Ressel_0-1751438734764.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;See also the example attached.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 06:48:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Timestamp-question/m-p/882786#M104694</guid>
      <dc:creator>Ressel</dc:creator>
      <dc:date>2025-07-02T06:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp question</title>
      <link>https://community.jmp.com/t5/Discussions/Timestamp-question/m-p/882788#M104695</link>
      <description>&lt;P&gt;And in more general remove the date of time from the timestamp. If we assume you have correctly formatted data in column called TIMESTAMP, you can use quick formula from right click menu&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1751438792613.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77684i49A96CE08CF085F1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1751438792613.png" alt="jthi_0-1751438792613.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And it will give you the formula you would use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;:TIMESTAMP - Time Of Day(:TIMESTAMP)&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-1751438831771.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77685i969843508C9F22FB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1751438831771.png" alt="jthi_1-1751438831771.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can verify that values have changed by changing the format to Best&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1751438870554.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/77686i6AF61E3F0918D248/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1751438870554.png" alt="jthi_2-1751438870554.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 06:48:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Timestamp-question/m-p/882788#M104695</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-02T06:48:17Z</dc:date>
    </item>
  </channel>
</rss>

