<?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>September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/discussions/f/general/39685/september-is-abbreviated-to-sept-even-though-left-function-is-used</link><description>if( rule!APN_isBlank(singlePV: ri!date), &amp;quot;&amp;quot;, /*left(text(ri!date, &amp;quot;mmm&amp;quot;,3), ri!format))*/ left(text(ri!date,&amp;quot;mmm&amp;quot;,3), ri!format) ) 
 
 Following is the error 
 
 Expression evaluation error at function &amp;#39;text&amp;#39; [line 7]: Signature length (2) does not match</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151435?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 15:23:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d60f57ad-c482-4f26-a49a-12ff1e9df2b0</guid><dc:creator>nirupamaanuragt</dc:creator><description>&lt;p&gt;&lt;a href="/members/shubhama926776"&gt;Shubham Aware&lt;/a&gt;&amp;nbsp;Somehow we have encountered this issue for July too earlier but in 2025, facing issue with September. I am sure Appian should have some resolution going forward to fix it from root.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I will try the recommendations you have shared. Thanks for keeping an eye on this.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151426?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 08:37:47 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:531eded8-c8b2-44b7-b8d7-9b5e71338bb0</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Got you! This issue is because of user locale.&lt;br /&gt;&lt;br /&gt;User Level: Change user profile locale from en_GB (UK) to en_US (US) =&amp;gt; affects only that user&lt;br /&gt;Admin Level: Go to Admin Console -&amp;gt; Internationalization -&amp;gt; Change Primary Locale to en_US =&amp;gt; applies to all users in the environment.&lt;br /&gt;&lt;br /&gt;This locale problem is only for September month recommend you to make changes to code instead of environment level.&lt;br /&gt;Below working example for all months&lt;br /&gt;&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!date:&amp;quot;09/11/2025&amp;quot;,
  local!formattedDate: text(local!date, &amp;quot;dd-MMM-yyyy&amp;quot;),
  if(
    isnull(local!date),
    null,
    substitute(
      local!formattedDate,
      &amp;quot;Sept&amp;quot;,
      &amp;quot;Sep&amp;quot;
    )
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151424?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 08:24:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b84cd731-56c6-4f00-ad35-2020725be0eb</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;Can you check if under Settings-&amp;gt;General you have locale set as English(United Kingdom). Looks like the Internationalisations settings are at play here causing this behaviour. I have it as United States and it returns output as &amp;#39;Sep&amp;#39;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1757492658088v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;If for reasons, you cannot update the Locale to US then you can try and handle the September month like below. Give it a try!&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;if(
  month(ri!date) = 9,
  substitute(
    text(ri!date, &amp;quot;dd-mm-yyyy&amp;quot;),
    &amp;quot;-09-&amp;quot;,
    &amp;quot;-Sep-&amp;quot;
  ),
  text(ri!date, &amp;quot;dd-mmm-yyyy&amp;quot;)
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151422?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 07:54:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f31bfd1a-cc22-4b36-8ab6-6770c409467c</guid><dc:creator>nirupamaanuragt</dc:creator><description>&lt;p&gt;&lt;a href="/members/harshas2775"&gt;Harsha Sharma&lt;/a&gt;&amp;nbsp; Not working still&amp;nbsp;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/Screenshot-2025_2D00_09_2D00_10-132334.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151421?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 07:52:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:acde5e58-3801-4597-99f1-192e1ba1c213</guid><dc:creator>nirupamaanuragt</dc:creator><description>&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/Screenshot-2025_2D00_09_2D00_10-132205.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151417?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 06:25:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c658f97e-d876-492a-a441-2eaea5c9991a</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;You can simply use text to get the desired output, why make it complex with left(). For every date this will work for you by passing the expected output format in text().&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;text(ri!date,&amp;quot;dd-mmm-yyyy&amp;quot;)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151415?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 06:04:45 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4f5bc0a6-136f-4b56-be09-cfef9b35c077</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Could you try this once&lt;br /&gt;Let me know if that works for you.&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;text(
  index(todate(&amp;quot;09/09/2025&amp;quot;, &amp;quot;MM/dd/yyyy&amp;quot;), 1),
  &amp;quot;dd-MMM-yyyy&amp;quot;
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151414?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 05:58:19 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:575668e6-5985-4685-9d66-2ee09b2bc948</guid><dc:creator>nirupamaanuragt</dc:creator><description>&lt;p&gt;I am expecting incoming date in the format&amp;nbsp;&amp;quot;09/09/2025&amp;quot; and output should be in dd-mmm-yyyy. For rest of the months the existing code is working fine. However, returning September as Sept.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Input -&amp;nbsp;&amp;quot;09/09/2025&amp;quot;&lt;/p&gt;
&lt;p&gt;Output - 09-Sep-2025&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151413?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 05:54:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8211253f-09bb-440e-8db3-8660b3c69394</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;May i know what input and output you are expecting to help you better?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151412?ContentTypeID=1</link><pubDate>Wed, 10 Sep 2025 05:53:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:7bb8a3c7-08f4-4f4a-8d95-fefd77a7c941</guid><dc:creator>nirupamaanuragt</dc:creator><description>&lt;p&gt;This is still not working. As the left function needs the number of characters to be extracted from the text which is still missing from the code. It is not giving any result.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151396?ContentTypeID=1</link><pubDate>Tue, 09 Sep 2025 10:26:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:11732041-92ec-4097-be3a-d2b900ba7506</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;Remove the 3 from the text() function. The text() function only needs:&lt;br /&gt;The date value (ri!date)&lt;br /&gt;The format string (&amp;quot;mmm&amp;quot;)&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;if(
 rule!APN_isBlank(singlePV: ri!date),
  &amp;quot;&amp;quot;,
  left(text(ri!date, &amp;quot;mmm&amp;quot;), ri!format)
)&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;The left() function with ri!format will handle truncating the month name to the desired length.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151391?ContentTypeID=1</link><pubDate>Tue, 09 Sep 2025 10:08:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:29109fce-016c-45db-a8d4-8a7b3c4a9dc8</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;if(
  rule!APN_isBlank(singlePV: ri!date),
  &amp;quot;&amp;quot;,
  /*left(text(ri!date, &amp;quot;mmm&amp;quot;,3), ri!format))*/
  left(text(ri!date,&amp;quot;mmm&amp;quot;), 3) 
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;text() needs two parameters (value, format), left() needs two parameters (text, num of chars). Your text() has 3 parameters which might be causing this. Try and work with the above code to resolve the issue.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: September is Abbreviated to Sept even though Left() function is used</title><link>https://community.appian.com/thread/151390?ContentTypeID=1</link><pubDate>Tue, 09 Sep 2025 10:03:08 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:15102d7a-fc95-432f-9c8e-cd53dbdaf13c</guid><dc:creator>Harsha Sharma</dc:creator><description>&lt;p&gt;When inserting code using this is recommended Insert-&amp;gt;Code&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1757412248068v1.png" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>