<?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: Decipher DFD for specific table value in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Decipher-DFD-for-specific-table-value/m-p/101388#M48367</link>
    <description>Answer to &lt;A class="user-content-mention" data-sign="@" data-contactkey="b78ec435-e779-48d2-b291-b5e6085cd3d8" data-tag-text="@Tejendra Bandaru" href="https://community.blueprism.com/network/profile?UserKey=b78ec435-e779-48d2-b291-b5e6085cd3d8" data-itemmentionkey="88a73f38-af28-4e48-b096-8435c5e5aff6"&gt;@Tejendra Bandaru&lt;/A&gt; in the following thread link:&amp;nbsp;&lt;A href="https://community.blueprism.com/communities/community-home/digestviewer/view-question?ContributedContentKey=557a8335-7c3e-43f5-99a1-962deb209d7e&amp;amp;CommunityKey=d4ab3eee-2dfe-4d40-b6de-4c7643bf3343&amp;amp;tab=digestviewer​​" target="_blank" rel="noopener"&gt;&amp;nbsp;Decipher not accepting approximate formula values&amp;nbsp;&lt;/A&gt;</description>
    <pubDate>Thu, 25 Feb 2021 15:58:40 GMT</pubDate>
    <dc:creator>ramonnunez</dc:creator>
    <dc:date>2021-02-25T15:58:40Z</dc:date>
    <item>
      <title>Decipher DFD for specific table value</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Decipher-DFD-for-specific-table-value/m-p/101385#M48364</link>
      <description>&lt;P&gt;i want to identify with Decipher a specific element from a table,&lt;BR /&gt;&lt;BR /&gt;I want a specific column value based on a label&lt;/P&gt;
&lt;P&gt;for example I've the following table:&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="text-decoration: underline"&gt;header1|header2|header3|header4&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;value1&amp;nbsp; &amp;nbsp;| 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| 1&lt;/P&gt;
&lt;P&gt;value2&amp;nbsp; &amp;nbsp;| 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| 2&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to define through a DFD field, to only recognize the content of header1 if it's equal to "value2" and then assign to that field the value of header4&lt;/P&gt;
&lt;P&gt;what could be the best approach to do this and if it's possible to do it through decipher&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 21:45:03 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Decipher-DFD-for-specific-table-value/m-p/101385#M48364</guid>
      <dc:creator>EmmanuelNeiza</dc:creator>
      <dc:date>2021-02-05T21:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Decipher DFD for specific table value</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Decipher-DFD-for-specific-table-value/m-p/101386#M48365</link>
      <description>&lt;P&gt;So you would have to create the table in the DFD and get all the values for column 1 and column4. Then you would use the formula option of the result field to store the value of column4 as your result. The formula will depend on the type of the value that you would get from header1 column. If the value is text then the formula will go sort of like this:&lt;/P&gt;
&lt;P&gt;IF(STRCMP(FT_HEADER1, "value2"),FT_HEADER4,"") &lt;/P&gt;
&lt;P&gt;This compares the string capture for header1 with value and if it is true then it stores the value in header4 in the result field. The result field will be added as an additional column on the table that contains the result from the expression. Also it must contain the autocalculate and assignable flags. If value2 is a number then you will have to use the "EQ()" function instead of the "STRCMP()". For more information on formula language see the link below:&lt;BR /&gt;&lt;A href="https://bpdocs.blueprism.com/decipher/user-guide/formula-language.htm?Highlight=formula" target="_blank" rel="noopener"&gt;Decipher Online User Guide - Formula Language&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2021 03:44:04 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Decipher-DFD-for-specific-table-value/m-p/101386#M48365</guid>
      <dc:creator>ramonnunez</dc:creator>
      <dc:date>2021-02-12T03:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Decipher DFD for specific table value</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Decipher-DFD-for-specific-table-value/m-p/101387#M48366</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="fdb9f237-f3c4-44fc-91fe-4f74e8623513" data-tag-text="@Ramon Nunez" href="https://community.blueprism.com/network/profile?UserKey=fdb9f237-f3c4-44fc-91fe-4f74e8623513" data-itemmentionkey="2bab2ed8-f18b-4f78-a88a-8982988790d1"&gt;@Ramon Nunez&lt;/A&gt; I have a similar kind of requirement, will you be able to let me know how i can update the formual?&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to extract data from Uber bill, which is part of my training.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have given the Formula for CGST Amount as (Net Amount * 0.025) which is 2.5% of net amount. It is calculating and comparing the exact value in the scanned document. How should i give the approximation in the formula window?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Attachment added ​</description>
      <pubDate>Fri, 19 Feb 2021 07:11:25 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Decipher-DFD-for-specific-table-value/m-p/101387#M48366</guid>
      <dc:creator>TejendraBandaru</dc:creator>
      <dc:date>2021-02-19T07:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Decipher DFD for specific table value</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Decipher-DFD-for-specific-table-value/m-p/101388#M48367</link>
      <description>Answer to &lt;A class="user-content-mention" data-sign="@" data-contactkey="b78ec435-e779-48d2-b291-b5e6085cd3d8" data-tag-text="@Tejendra Bandaru" href="https://community.blueprism.com/network/profile?UserKey=b78ec435-e779-48d2-b291-b5e6085cd3d8" data-itemmentionkey="88a73f38-af28-4e48-b096-8435c5e5aff6"&gt;@Tejendra Bandaru&lt;/A&gt; in the following thread link:&amp;nbsp;&lt;A href="https://community.blueprism.com/communities/community-home/digestviewer/view-question?ContributedContentKey=557a8335-7c3e-43f5-99a1-962deb209d7e&amp;amp;CommunityKey=d4ab3eee-2dfe-4d40-b6de-4c7643bf3343&amp;amp;tab=digestviewer​​" target="_blank" rel="noopener"&gt;&amp;nbsp;Decipher not accepting approximate formula values&amp;nbsp;&lt;/A&gt;</description>
      <pubDate>Thu, 25 Feb 2021 15:58:40 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Decipher-DFD-for-specific-table-value/m-p/101388#M48367</guid>
      <dc:creator>ramonnunez</dc:creator>
      <dc:date>2021-02-25T15:58:40Z</dc:date>
    </item>
  </channel>
</rss>

