<?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: Create timestamp including milliseconds in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78216#M30266</link>
    <description>Thanks to &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt; and &lt;A class="user-content-mention" data-sign="@" data-contactkey="f3b3506a-4fbb-4f2d-bb0f-3ea1ce7702d0" data-tag-text="@Nilesh Jadhav" href="https://community.blueprism.com/network/profile?UserKey=f3b3506a-4fbb-4f2d-bb0f-3ea1ce7702d0" data-itemmentionkey="de69a32b-e9e6-4b9d-ad50-e1d315da0b4c"&gt;@Nilesh Jadhav&lt;/A&gt;: Your both did it! Now it works fine. Thanks!&lt;BR /&gt;&lt;BR /&gt;Remark: &lt;A class="user-content-mention" data-sign="@" data-contactkey="f3b3506a-4fbb-4f2d-bb0f-3ea1ce7702d0" data-tag-text="@Nilesh Jadhav" href="https://community.blueprism.com/network/profile?UserKey=f3b3506a-4fbb-4f2d-bb0f-3ea1ce7702d0" data-itemmentionkey="de69a32b-e9e6-4b9d-ad50-e1d315da0b4c"&gt;@Nilesh Jadhav&lt;/A&gt;: I ommit the (re) definition of MS because MS is already defined as output.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Roberto Luis Rodríguez Estévez&lt;BR /&gt;Senior Software Developer&lt;BR /&gt;Expleo Technology Germany GmbH&lt;BR /&gt;Europe/Berlin&lt;BR /&gt;------------------------------</description>
    <pubDate>Thu, 03 Dec 2020 08:45:00 GMT</pubDate>
    <dc:creator>Roberto_LuisRod</dc:creator>
    <dc:date>2020-12-03T08:45:00Z</dc:date>
    <item>
      <title>Create timestamp including milliseconds</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78213#M30263</link>
      <description>Hello!&lt;BR /&gt;I am trying to create a timestamp including milliseconds with the following expression:&lt;BR /&gt;FormatDateTime(Now(), "yyyy_MM_dd_hh_mm_ss_fff")&lt;BR /&gt;According to the Dot.Net documentation (https://docs.microsoft.com/de-de/dotnet/standard/base-types/custom-date-and-time-format-strings) it should work with fff. Unfortunately I only get 000 at the end, which is unlikely to be correct considering the number of attempts I already made.&lt;BR /&gt;What should the format string be so that the milliseconds are part of the result?&lt;BR /&gt;PS: FFF instead of fff does not work either.&lt;BR /&gt;Thanks a lot!&lt;BR /&gt;&lt;A data-tag-text="BPTechTips" data-sign="#" class="user-content-hashtag" href="https://community.blueprism.com/search?s=tags%3A%22BPTechTips%22&amp;amp;executesearch=true" data-tag-key="96c6fa99-5a9a-4919-98a6-d9ce55afe99f"&gt;#BPTechTips&lt;/A&gt;&lt;BR /&gt;​​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Roberto Luis Rodríguez Estévez&lt;BR /&gt;Senior Software Developer&lt;BR /&gt;Expleo Technology Germany GmbH&lt;BR /&gt;Europe/Berlin&lt;BR /&gt;------------------------------</description>
      <pubDate>Wed, 02 Dec 2020 17:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78213#M30263</guid>
      <dc:creator>Roberto_LuisRod</dc:creator>
      <dc:date>2020-12-02T17:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: Create timestamp including milliseconds</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78214#M30264</link>
      <description>Hi Roberto,&lt;BR /&gt;&lt;BR /&gt;Please do below things&lt;BR /&gt;&lt;BR /&gt;1.add namespace and dll in initial stage&lt;BR /&gt;
&lt;DL class="attributeList"&gt;
&lt;DT&gt;Namespace:&lt;/DT&gt;
&lt;DD&gt;&lt;SPAN class="break-text"&gt;&lt;A class="xref" href="https://docs.microsoft.com/en-us/dotnet/api/microsoft.visualbasic?view=net-5.0" data-linktype="relative-path" target="_blank" rel="noopener"&gt;Microsoft.&lt;WBR /&gt;Visual&lt;WBR /&gt;Basic&lt;/A&gt;&lt;/SPAN&gt;&lt;/DD&gt;
&lt;/DL&gt;
&lt;DL class="attributeList" data-moniker=" net-5.0 netcore-3.0 netcore-3.1 "&gt;
&lt;DT&gt;Assembly:&lt;/DT&gt;
&lt;DD&gt;Microsoft.VisualBasic.Core.dll&lt;/DD&gt;
&lt;/DL&gt;
&lt;BR /&gt;2.Please use code stage with below code (MS will be string as output)&lt;BR /&gt;&lt;BR /&gt;Dim MS&amp;nbsp;&lt;BR /&gt;MS = format(Now,"yyyy_MM_dd_hh_mm_ss_fff")&lt;BR /&gt;&lt;BR /&gt;You can build code&amp;nbsp; here without installing .net (&lt;A href="https://www.tutorialspoint.com/compile_vb.net_online.php" target="_blank" rel="noopener"&gt;https://www.tutorialspoint.com/compile_vb.net_online.php&lt;/A&gt;)&lt;BR /&gt;&lt;BR /&gt;I hope your issue is resolve now.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nilesh Jadhav &lt;BR /&gt;Senior RPA Specialist&lt;BR /&gt;ADP&lt;BR /&gt;India&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Dec 2020 20:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78214#M30264</guid>
      <dc:creator>NileshJadhavBP</dc:creator>
      <dc:date>2020-12-02T20:18:00Z</dc:date>
    </item>
    <item>
      <title>RE: Create timestamp including milliseconds</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78215#M30265</link>
      <description>This works for me:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;DateTime.Now.ToString("yyyy_MM_dd_hh_mm_ss_fff");​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;Here's a screenshot of returning that in an output data item (of type Text) in a code stage:&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="23068.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/23205i39993945F63BA3A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="23068.png" alt="23068.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Dec 2020 22:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78215#M30265</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2020-12-02T22:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Create timestamp including milliseconds</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78216#M30266</link>
      <description>Thanks to &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt; and &lt;A class="user-content-mention" data-sign="@" data-contactkey="f3b3506a-4fbb-4f2d-bb0f-3ea1ce7702d0" data-tag-text="@Nilesh Jadhav" href="https://community.blueprism.com/network/profile?UserKey=f3b3506a-4fbb-4f2d-bb0f-3ea1ce7702d0" data-itemmentionkey="de69a32b-e9e6-4b9d-ad50-e1d315da0b4c"&gt;@Nilesh Jadhav&lt;/A&gt;: Your both did it! Now it works fine. Thanks!&lt;BR /&gt;&lt;BR /&gt;Remark: &lt;A class="user-content-mention" data-sign="@" data-contactkey="f3b3506a-4fbb-4f2d-bb0f-3ea1ce7702d0" data-tag-text="@Nilesh Jadhav" href="https://community.blueprism.com/network/profile?UserKey=f3b3506a-4fbb-4f2d-bb0f-3ea1ce7702d0" data-itemmentionkey="de69a32b-e9e6-4b9d-ad50-e1d315da0b4c"&gt;@Nilesh Jadhav&lt;/A&gt;: I ommit the (re) definition of MS because MS is already defined as output.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Roberto Luis Rodríguez Estévez&lt;BR /&gt;Senior Software Developer&lt;BR /&gt;Expleo Technology Germany GmbH&lt;BR /&gt;Europe/Berlin&lt;BR /&gt;------------------------------</description>
      <pubDate>Thu, 03 Dec 2020 08:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78216#M30266</guid>
      <dc:creator>Roberto_LuisRod</dc:creator>
      <dc:date>2020-12-03T08:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: Create timestamp including milliseconds</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78217#M30267</link>
      <description>Hi @Roberto&amp;nbsp;Luis&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;its great news and really happy as you got output​​ &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Nilesh&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nilesh Jadhav &lt;BR /&gt;Senior RPA Specialist&lt;BR /&gt;ADP&lt;BR /&gt;India&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Dec 2020 11:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Create-timestamp-including-milliseconds/m-p/78217#M30267</guid>
      <dc:creator>NileshJadhavBP</dc:creator>
      <dc:date>2020-12-03T11:14:00Z</dc:date>
    </item>
  </channel>
</rss>

