<?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 Time Stamp comparison formula in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Time-Stamp-comparison-formula/m-p/910187#M106913</link>
    <description>&lt;P&gt;I have to create an annotation column which should be filled depending on timestamp range from Time1 till time2.&lt;BR /&gt;What is the correct jsl function to put into the formula to compare the given timestamps with the dates in the Time column?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If((2025-10-23 00:56:57) &amp;lt;= :Time &amp;lt;= (2025-10-26 10:56:57), "Step 1")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Time column has the following format&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimeQuestion_2025-10-28 13_06_19-FAT1_log - JMP.png" style="width: 710px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/85894i7EA46E475DECD9FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="TimeQuestion_2025-10-28 13_06_19-FAT1_log - JMP.png" alt="TimeQuestion_2025-10-28 13_06_19-FAT1_log - JMP.png" /&gt;&lt;/span&gt;&lt;BR /&gt;I am using JMP19.0.0&lt;/P&gt;</description>
    <pubDate>Tue, 28 Oct 2025 12:21:32 GMT</pubDate>
    <dc:creator>mlo1</dc:creator>
    <dc:date>2025-10-28T12:21:32Z</dc:date>
    <item>
      <title>Time Stamp comparison formula</title>
      <link>https://community.jmp.com/t5/Discussions/Time-Stamp-comparison-formula/m-p/910187#M106913</link>
      <description>&lt;P&gt;I have to create an annotation column which should be filled depending on timestamp range from Time1 till time2.&lt;BR /&gt;What is the correct jsl function to put into the formula to compare the given timestamps with the dates in the Time column?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If((2025-10-23 00:56:57) &amp;lt;= :Time &amp;lt;= (2025-10-26 10:56:57), "Step 1")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Time column has the following format&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TimeQuestion_2025-10-28 13_06_19-FAT1_log - JMP.png" style="width: 710px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/85894i7EA46E475DECD9FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="TimeQuestion_2025-10-28 13_06_19-FAT1_log - JMP.png" alt="TimeQuestion_2025-10-28 13_06_19-FAT1_log - JMP.png" /&gt;&lt;/span&gt;&lt;BR /&gt;I am using JMP19.0.0&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 12:21:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Time-Stamp-comparison-formula/m-p/910187#M106913</guid>
      <dc:creator>mlo1</dc:creator>
      <dc:date>2025-10-28T12:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Time Stamp comparison formula</title>
      <link>https://community.jmp.com/t5/Discussions/Time-Stamp-comparison-formula/m-p/910197#M106914</link>
      <description>&lt;P&gt;Can Time1 and Time2 be found from somewhere? If not, you can use following format directly&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;28Oct2025:14:25:08&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or use Informat() and define the format&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 12:28:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Time-Stamp-comparison-formula/m-p/910197#M106914</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-10-28T12:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Time Stamp comparison formula</title>
      <link>https://community.jmp.com/t5/Discussions/Time-Stamp-comparison-formula/m-p/910202#M106916</link>
      <description>&lt;P&gt;Here is how I would handle it&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(informat("2025-10-23 00:56:57", "yyyy-mm-ddThh:mm:ss") &amp;lt;= :Time &amp;lt;= Informat("2025-10-26 10:56:57","yyyy-mm-ddThh:mm:ss"), "Step 1")&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Oct 2025 15:09:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Time-Stamp-comparison-formula/m-p/910202#M106916</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-10-28T15:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Time Stamp comparison formula</title>
      <link>https://community.jmp.com/t5/Discussions/Time-Stamp-comparison-formula/m-p/910214#M106917</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;time = 14:10:15;
date = 18Jan1957;
datetime = 11Jul2000:03:10:12; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Lots of information, including information about date, time, and datetime constants in&amp;nbsp;&lt;LI-MESSAGE title="Using dates, times, datetimes and durations in JMP" uid="68689" url="https://community.jmp.com/t5/JMPer-Cable/Using-dates-times-datetimes-and-durations-in-JMP/m-p/68689#U68689" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 15:28:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Time-Stamp-comparison-formula/m-p/910214#M106917</guid>
      <dc:creator>Jeff_Perkinson</dc:creator>
      <dc:date>2025-10-28T15:28:41Z</dc:date>
    </item>
  </channel>
</rss>

