<?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: Available functions in filter collection in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Available-functions-in-filter-collection/m-p/44593#M1024</link>
    <description>&lt;P&gt;Hi Eric the Filter action is essentially an implementation of the .Net DataTable.Select method&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dotnet/api/system.data.datatable.select?view=net-8.0#system-data-datatable-select(system-string)" target="test_blank"&gt;https://learn.microsoft.com/en-us/dotnet/api/system.data.datatable.select?view=net-8.0#system-data-datatable-select(system-string)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="12340.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/12510i7D2861918D663EBD/image-size/large?v=v2&amp;amp;px=999" role="button" title="12340.png" alt="12340.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Carter&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 11 Jan 2024 15:10:00 GMT</pubDate>
    <dc:creator>John__Carter</dc:creator>
    <dc:date>2024-01-11T15:10:00Z</dc:date>
    <item>
      <title>Available functions in filter collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Available-functions-in-filter-collection/m-p/44592#M1023</link>
      <description>&lt;P&gt;May I have advice on what kind of functions are available in filter collection, so far just Len() is workable, others like Upper()/CDbl() /&lt;SPAN&gt;INSTR()&amp;nbsp;are all return &lt;SPAN style="font-size: 14.6667px;"&gt;Undefined&lt;/SPAN&gt; Function error.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;e.g. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"Len([Field1])&amp;gt;2" do work.&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"CDbl([Field2])&amp;gt;2" failed.&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Li&lt;BR /&gt;Operation Analysis&lt;BR /&gt;AIG&lt;BR /&gt;Asia/Hong_Kong&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jan 2024 09:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Available-functions-in-filter-collection/m-p/44592#M1023</guid>
      <dc:creator>EricLi</dc:creator>
      <dc:date>2024-01-11T09:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: Available functions in filter collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Available-functions-in-filter-collection/m-p/44593#M1024</link>
      <description>&lt;P&gt;Hi Eric the Filter action is essentially an implementation of the .Net DataTable.Select method&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dotnet/api/system.data.datatable.select?view=net-8.0#system-data-datatable-select(system-string)" target="test_blank"&gt;https://learn.microsoft.com/en-us/dotnet/api/system.data.datatable.select?view=net-8.0#system-data-datatable-select(system-string)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="12340.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/12510i7D2861918D663EBD/image-size/large?v=v2&amp;amp;px=999" role="button" title="12340.png" alt="12340.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Carter&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jan 2024 15:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Available-functions-in-filter-collection/m-p/44593#M1024</guid>
      <dc:creator>John__Carter</dc:creator>
      <dc:date>2024-01-11T15:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: Available functions in filter collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Available-functions-in-filter-collection/m-p/44594#M1025</link>
      <description>&lt;P&gt;@Eric Li&lt;/P&gt;
&lt;P&gt;You can you find the valid functions in the following web page:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/dotnet/api/system.data.datacolumn.expression?view=net-8.0" target="_blank" rel="noopener"&gt;DataColumn.Expression Property (System.Data) | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;For your CDbl you have to use something like:&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;"Convert([Field2],'System.Double')&amp;gt;2"&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For Instr you have to use something like:&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;"[Field2] LIKE '*partialstring*'"&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Micheal Charron&lt;BR /&gt;Senior Manager&lt;BR /&gt;RBC&lt;BR /&gt;America/Toronto&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Jan 2024 15:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Available-functions-in-filter-collection/m-p/44594#M1025</guid>
      <dc:creator>MichealCharron</dc:creator>
      <dc:date>2024-01-11T15:31:00Z</dc:date>
    </item>
    <item>
      <title>RE: Available functions in filter collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Available-functions-in-filter-collection/m-p/44595#M1026</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV&gt; &lt;P&gt;&lt;SPAN lang="EN-US"&gt;Thanks Michael and John, you do help me.&lt;/SPAN&gt;&lt;/P&gt; &lt;P&gt;&lt;SPAN lang="EN-US"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P&gt;&lt;B&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:#00A4E4"&gt;Eric Li&lt;/SPAN&gt;&lt;/B&gt;&lt;B&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:purple"&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt; &lt;P&gt;&lt;B&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:#00A4E4"&gt;AIG&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt; &lt;P style="text-autospace:none"&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:#404040"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="text-autospace:none"&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:#404040"&gt;Automation Delivery Team | China Service Center&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="layout-grid-mode:char"&gt;&lt;B&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:#595959"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt; &lt;P style="text-autospace:none"&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:#404040"&gt;9F, The Centerpoint (Shuion), 374-2 Beijing Road, Gu&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:#333333"&gt;angzhou,  China 510030&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="layout-grid-mode:char"&gt;&lt;B&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:#595959"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt; &lt;P style="text-autospace:none"&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:#404040"&gt;Tel: (+86 20) 2882 5022&lt;/SPAN&gt;&lt;/P&gt; &lt;P&gt;&lt;SPAN lang="EN-US" style="color:#1F497D"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;P style="text-autospace:none"&gt;&lt;U&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:blue"&gt;&lt;A href="mailto:Eric-F.Li@aig.com"&gt;&lt;SPAN style="font-family:&amp;quot;Times New Roman&amp;quot;,serif;color:black"&gt;Eric-F.Li@aig.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/U&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:blue"&gt;  |&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="color:#1F497D"&gt;&lt;A&gt;&lt;SPAN style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:black"&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;A href="https://community.blueprism.com/www.aig.com" target="test_blank"&gt;www.aig.com&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size:10.0pt;font-family:&amp;quot;Arial&amp;quot;,sans-serif;color:blue"&gt;&lt;/SPAN&gt;&lt;/P&gt; &lt;P&gt;&lt;SPAN lang="EN-US"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; &lt;/DIV&gt;  &lt;DIV&gt; IMPORTANT NOTICE:&lt;BR /&gt; &lt;BR /&gt; The information in this email (and any attachments) is confidential. If you are not the intended recipient, you must not use or disseminate the information. If you have received this email in error, please immediately notify me by "Reply" command and permanently delete the original and any copies or printouts thereof. Although this email and any attachments are believed to be free of any virus or other defect that might affect any computer system into which it is received and opened, it is the responsibility of the recipient to ensure that it is virus free and no responsibility is accepted by AIG for any loss or damage arising in any way from its use.&lt;BR /&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Jan 2024 03:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Available-functions-in-filter-collection/m-p/44595#M1026</guid>
      <dc:creator>EricLi</dc:creator>
      <dc:date>2024-01-12T03:37:00Z</dc:date>
    </item>
  </channel>
</rss>

