<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Convert Text to DateandTime</title><link>https://community.appian.com/discussions/f/best-practices/38386/convert-text-to-dateandtime</link><description>Hi Team, 
 
 I have below text and I want to convert it into a Date and Time. 
 
 Example: 
 Text: &amp;quot; 01/07/2025 12:00:35 PM &amp;quot; 
 Date and Time: 01/07/2025 12:00:35 PM or 01/07/2025 12:00:35 PM GMT+00:00</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144693?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 08:17:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2511e968-f720-49d7-912a-d133c8e003ba</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/20/pastedimage1737620202682v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Using this pattern, you can create your own date parsing expression.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144692?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 08:10:03 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:24fbd826-de7a-4c25-88c6-37da2d54b433</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;&lt;span&gt;its eliminating the seconds part from time and date time is not in a format mm/dd/yyyy hh:mm:ss AM/PM&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144691?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 08:04:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:bacb64ac-201e-448e-9dcd-0c1ab89a8f4b</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;I asked that exact question already.&lt;/p&gt;
&lt;p&gt;If the todatetime() function does not fit your needs, you will have to parse that string yourself using split().&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144690?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 08:01:28 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:03f50194-1512-41f8-9531-76cf228888ab</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;date and time is part of a text and we need to extract date and time part and return in the same format as date and time data type&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144689?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:56:52 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e3670529-11c1-4bbf-a76c-28785d72cf9f</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;its eliminating the seconds part from time and date time is not in a format mm/dd/yyyy hh:mm:ss AM/PM&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144688?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:56:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:36eb159c-ebdd-465f-9bb5-47449d16ec2b</guid><dc:creator>JayaPrakash Ravipati</dc:creator><description>&lt;p&gt;Try&amp;nbsp; the below code&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!reportdata: local!reportdata: {{c3: fn!datetime(2025, 1, 7, 5, 12, 2, 300), c0: &amp;quot;Workflow_00001_01-07-2025 12:00:35 PM&amp;quot;, c1: 1, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1055133, dp3: null, dp2: null}, {c3: fn!datetime(2025, 1, 3, 5, 20, 6, 410), c0: &amp;quot;Workflow_0001_01-03-2025 06:09:35 AM&amp;quot;, c1: 1, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1060892, dp3: null, dp2: null}, {c3: fn!datetime(2025, 1, 2, 12, 40, 13, 960), c0: &amp;quot;Workflow_0001_12-07-2022 06:09:35 AM&amp;quot;, c1: 0, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1060315, dp3: null, dp2: null}},
  a!forEach(
    items: local!reportdata,
    expression: if(a!isNotNullOrEmpty(fv!item), {
      taskName: fv!item.c2,
      Id: if(
        a!isNotNullOrEmpty(fv!item.c0),
        if(
          left(fv!item.c0, 3) = &amp;quot;PN&amp;quot;,
          index(split(fv!item.c0, &amp;quot;_&amp;quot;), 3, null),
          index(split(fv!item.c0, &amp;quot;_&amp;quot;), 2, null)
        ),
        null
      ),
      SubDateTime: a!localVariables(
        local!date:split(fv!item.c0,&amp;quot;_&amp;quot;),
        todatetime(substitute(index(local!date,3,null),&amp;quot;-&amp;quot;,&amp;quot;/&amp;quot;))
      )
    }, null)
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144687?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:54:05 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4b68e0f2-f7f6-4ec9-8a07-8287f0dddc52</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Where is this value in the c0 field coming from? Why is it like this? Is there no way to get that date directly as an individual field?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144686?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:52:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e8d202f4-0adb-4553-ac75-1b71bdb5e208</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;todatetime(substitute(&amp;quot;12-07-2022 06:09:35 AM&amp;quot;, &amp;quot;-&amp;quot;, &amp;quot;/&amp;quot;))&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144685?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:46:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4583e0e0-761b-4f08-b24a-c34d4e468205</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;Its not working if reportdata is&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;local!reportdata: {{c3: fn!datetime(2025, 1, 7, 5, 12, 2, 300), c0: &amp;quot;Workflow_00001_01-07-2025 12:00:35 PM&amp;quot;, c1: 1, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1055133, dp3: null, dp2: null}, {c3: fn!datetime(2025, 1, 3, 5, 20, 6, 410), c0: &amp;quot;Workflow_0001_01-03-2025 06:09:35 AM&amp;quot;, c1: 1, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1060892, dp3: null, dp2: null}, {c3: fn!datetime(2025, 1, 2, 12, 40, 13, 960), c0: &amp;quot;Workflow_0001_12-07-2022 06:09:35 AM&amp;quot;, c1: 0, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1060315, dp3: null, dp2: null}}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144684?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:44:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:249bac7f-1538-442a-8fea-5dbc4608a9cc</guid><dc:creator>JayaPrakash Ravipati</dc:creator><description>&lt;p&gt;If possible can you post the screenshot with the error&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144683?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:44:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:aaf2b384-179f-47f9-803a-554cd382c1e7</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/20/pastedimage1737618246142v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144682?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:42:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d6a49f03-3508-4ed5-8292-3957f92185e8</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;Its erroring for me&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144681?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:40:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a69421e1-11e4-4cf2-8a88-619c165c5436</guid><dc:creator>JayaPrakash Ravipati</dc:creator><description>&lt;p&gt;Add the todatetime() function in line 16 it is working for me not returning any error..&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!reportdata: local!reportdata: {{c3: fn!datetime(2025, 1, 7, 5, 12, 2, 300), c0: &amp;quot;Workflow_00001_01-07-2025 12:00:35 PM&amp;quot;, c1: 1, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1055133, dp3: null, dp2: null}, {c3: fn!datetime(2025, 1, 3, 5, 20, 6, 410), c0: &amp;quot;Workflow_0001_01-03-2025 06:09:35 AM&amp;quot;, c1: 1, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1060892, dp3: null, dp2: null}, {c3: fn!datetime(2025, 1, 2, 12, 40, 13, 960), c0: &amp;quot;Workflow_0001_12-07-2022 06:09:35 AM&amp;quot;, c1: 0, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1060315, dp3: null, dp2: null}},
  a!forEach(
    items: local!reportdata,
    expression: if(a!isNotNullOrEmpty(fv!item), {
      taskName: fv!item.c2,
      Id: if(
        a!isNotNullOrEmpty(fv!item.c0),
        if(
          left(fv!item.c0, 3) = &amp;quot;PN&amp;quot;,
          index(split(fv!item.c0, &amp;quot;_&amp;quot;), 3, null),
          index(split(fv!item.c0, &amp;quot;_&amp;quot;), 2, null)
        ),
        null
      ),
      SubDateTime: a!localVariables(
        local!date:split(fv!item.c0,&amp;quot;_&amp;quot;),
        todatetime(substitute(index(local!date,3,null),&amp;quot;-&amp;quot;,&amp;quot;/&amp;quot;))
      )
    }, null)
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144680?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:38:05 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8b35e4e6-9afa-42aa-8bbb-8c99e83df4a9</guid><dc:creator>JayaPrakash Ravipati</dc:creator><description>&lt;p&gt;Can you share the code as you are using split() it returns a list. So for the datetime field try indexing the output of the split data.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144679?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:37:01 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:956d9121-8e90-4609-8c72-51c0f4d7061d</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!reportdata: {{c3: fn!datetime(2025, 1, 7, 5, 12, 2, 300), c0: &amp;quot;Workflow_00001_01/07/2025 12:00:35 PM&amp;quot;, c1: 1, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1055133, dp3: null, dp2: null}, {c3: fn!datetime(2025, 1, 3, 5, 20, 6, 410), c0: &amp;quot;Workflow_0001_01/03/2025 06:09:35 AM&amp;quot;, c1: 1, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1060892, dp3: null, dp2: null}, {c3: fn!datetime(2025, 1, 2, 12, 40, 13, 960), c0: &amp;quot;Workflow_0001_12/07/2022 06:09:35 AM&amp;quot;, c1: 0, c2: &amp;quot;Process&amp;quot;, dp1: null, dp0: 1060315, dp3: null, dp2: null}},
  a!forEach(
    items: local!reportdata,
    expression: if(a!isNotNullOrEmpty(fv!item), {
      taskName: fv!item.c2,
      Id: if(
        a!isNotNullOrEmpty(fv!item.c0),
        if(
          left(fv!item.c0, 3) = &amp;quot;PN&amp;quot;,
          index(split(fv!item.c0, &amp;quot;_&amp;quot;), 3, null),
          index(split(fv!item.c0, &amp;quot;_&amp;quot;), 2, null)
        ),
        null
      ),
      SubDateTime: index(split(fv!item.c0, &amp;quot;_&amp;quot;), 3, null)
    }, null)
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144678?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:28:35 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:72ed34ef-8882-42c4-9730-6fbc34a8bd90</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;The split() function returns a list of strings. Not sure where that Time datatype comes from? Can you share more of your code? Ideally a fully working isolated test case?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144677?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:15:57 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8c632908-b045-4b67-8fba-ecebbcc72cf5</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;Its mm/dd/yyyy&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144676?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:15:25 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1880da16-b0a8-4ae7-995c-1046aaf00fae</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;Output of the report data is being used to generate this text which needs to be converted into datetime.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Text is generated like&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;index(split(fv!item.c0, &amp;quot;_&amp;quot;), 3, null)&lt;/p&gt;
&lt;p&gt;output:&amp;nbsp;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;span&gt;&lt;span class="CollapsibleOutputNode---print_value"&gt;01/07/2025 12:00:35 PM&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&amp;quot;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;todatetime(&lt;span&gt;&amp;nbsp;index(split(fv!item.c0, &amp;quot;_&amp;quot;), 3, null)&lt;/span&gt;)&lt;/p&gt;
&lt;p&gt;ERROR:&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Expression evaluation error at function a!forEach [line 6]: Error in a!forEach() expression during iteration 1: Expression evaluation error at function &amp;#39;todatetime&amp;#39; [line 19]: Could not cast from Time to Date and Time with Timezone. Details: CastInvalidCould not cast from Time to Date and Time with Timezone. Details: CastInvalid&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144675?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:11:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:57e1a462-2a7f-40ae-8948-3ca02168b5eb</guid><dc:creator>JayaPrakash Ravipati</dc:creator><description>[quote userid="105886" url="~/discussions/f/best-practices/38386/convert-text-to-dateandtime"]Text:&amp;nbsp; &amp;quot;&lt;span&gt;&lt;span class="CollapsibleOutputNode---print_value"&gt;01/07/2025 12:00:35 PM&lt;/span&gt;&lt;/span&gt;&amp;quot;[/quote]
&lt;p&gt;Can you specify in which format it is dd/mm/yyyy or mm/dd/yyyy if it is mm/dd/yyyy then you can use the datetime() function else you need to split and convert to datetimeformat.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144674?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:06:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1b572c34-68c3-4fbf-a123-ad8a1e02704e</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;OK. What is the original data type? When trying to convert a string, this works great for me.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/20/pastedimage1737615975781v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144673?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 07:02:22 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:21278d71-3e64-4cb3-91ce-b95ed4bb9f4e</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;Getting below error when used todatetime()&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Expression evaluation error at function a!forEach [line 6]: Error in a!forEach() expression during iteration 1: Expression evaluation error at function &amp;#39;todatetime&amp;#39; [line 19]: Could not cast from Time to Date and Time with Timezone. Details: CastInvalidCould not cast from Time to Date and Time with Timezone. Details: CastInvalid&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144672?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 06:58:34 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:a9298c31-1438-4d3e-9e7b-f36a821307e5</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;What is the desired output? Are you missing the seconds?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144671?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 06:43:14 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:50e4d0d2-5c74-4ce3-b558-245c82107f25</guid><dc:creator>Sameer Ul Haq</dc:creator><description>&lt;p&gt;Not able to get the desired output if i use only&amp;nbsp;&lt;span&gt;todatetime(). I think need to use more functions to get the exact value i am specifying.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Convert Text to DateandTime</title><link>https://community.appian.com/thread/144670?ContentTypeID=1</link><pubDate>Thu, 23 Jan 2025 06:40:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:ed527912-a131-43b8-8c33-c6e5f3a7f161</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Did you try the todatetime() function?&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://docs.appian.com/suite/help/24.4/fnc_conversion_todatetime.html"&gt;https://docs.appian.com/suite/help/24.4/fnc_conversion_todatetime.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here are more functions in Appian:&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/24.4/Appian_Functions.html"&gt;https://docs.appian.com/suite/help/24.4/Appian_Functions.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>