<?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 Different Time Formats in the same column in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Different-Time-Formats-in-the-same-column/m-p/415639#M66472</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a column containing data of different timings. I would like to know how I can convert all the timings to the same format as they are of different formats.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Race Timings&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;51.98 (this is in seconds:milliseconds)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;52.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;52.19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:55.8 (this is in minutes:seconds:milliseconds)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02:15.3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to format all to min:s with input format as min:s, all data with seconds:milliseconds gets removed.&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2023 23:36:32 GMT</pubDate>
    <dc:creator>reynardlam94</dc:creator>
    <dc:date>2023-06-10T23:36:32Z</dc:date>
    <item>
      <title>Different Time Formats in the same column</title>
      <link>https://community.jmp.com/t5/Discussions/Different-Time-Formats-in-the-same-column/m-p/415639#M66472</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a column containing data of different timings. I would like to know how I can convert all the timings to the same format as they are of different formats.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Race Timings&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;51.98 (this is in seconds:milliseconds)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;52.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;52.19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01:55.8 (this is in minutes:seconds:milliseconds)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02:15.3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to format all to min:s with input format as min:s, all data with seconds:milliseconds gets removed.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:36:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Different-Time-Formats-in-the-same-column/m-p/415639#M66472</guid>
      <dc:creator>reynardlam94</dc:creator>
      <dc:date>2023-06-10T23:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Different Time Formats in the same column</title>
      <link>https://community.jmp.com/t5/Discussions/Different-Time-Formats-in-the-same-column/m-p/415645#M66474</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/31432"&gt;@reynardlam94&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wonder if this solution works for this case:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=NzbjVs0o6No" target="_blank"&gt;https://www.youtube.com/watch?v=NzbjVs0o6No&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please do let us know if it did.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Sep 2021 14:52:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Different-Time-Formats-in-the-same-column/m-p/415645#M66474</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2021-09-05T14:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Different Time Formats in the same column</title>
      <link>https://community.jmp.com/t5/Discussions/Different-Time-Formats-in-the-same-column/m-p/415650#M66475</link>
      <description>&lt;P&gt;I would write a simple For Each Row(), and add in the minutes value when there isn't one&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For Each Row(
  If(contains(:Race Timings, ":") == 0,
     :Race Timings = "00:" || :Race Timings
  )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then you will be able to convert the column using the informat method&lt;/P&gt;</description>
      <pubDate>Sun, 05 Sep 2021 15:38:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Different-Time-Formats-in-the-same-column/m-p/415650#M66475</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-09-05T15:38:44Z</dc:date>
    </item>
  </channel>
</rss>

