<?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: Excel Code Stage- Find and Replace in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88424#M38971</link>
    <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;Thanks for your response.&lt;BR /&gt;&lt;BR /&gt;i was able to login into DX and able to download other assets except the below link:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-blue-prism-utility" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-blue-prism-utility&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="23896.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/24029i8C2D1E48CDC9F553/image-size/large?v=v2&amp;amp;px=999" role="button" title="23896.png" alt="23896.png" /&gt;&lt;/span&gt;&lt;BR /&gt;i even logged a ticket as well, still waiting for support team response.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Satya&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Satyanarayana chinnapareddy&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 28 Jun 2021 12:51:00 GMT</pubDate>
    <dc:creator>Satyanarayanach</dc:creator>
    <dc:date>2021-06-28T12:51:00Z</dc:date>
    <item>
      <title>Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88416#M38963</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Has anyone came across or used a Find and Replace excel code stage at all?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jordan Wain&lt;BR /&gt;Blue Prism Developer&lt;BR /&gt;Shop Direct Group&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------</description>
      <pubDate>Fri, 05 Mar 2021 11:18:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88416#M38963</guid>
      <dc:creator>JordanWain</dc:creator>
      <dc:date>2021-03-05T11:18:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88417#M38964</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="ec0763e3-5c6d-4d6a-a05d-60996da41be4" data-tag-text="@Jordan Wain" href="https://community.blueprism.com/network/profile?UserKey=ec0763e3-5c6d-4d6a-a05d-60996da41be4" data-itemmentionkey="81aca051-9bbc-4807-b76f-7f3d3df0df7d"&gt;@Jordan Wain&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;The current standard Excel VBO that ships with Blue Prism doesn't include a generic Find action, but it's something we can add. In the meantime, adding it via a Code stage is not terribly difficult. Here's a very simple example:&lt;BR /&gt;​
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;' Get the Excel instance.
Dim excel as Object = GetInstance(handle)

Dim range As Object
range = excel.Sheets(sheetName).UsedRange.Find(text)

If Not range Is Nothing Then
	cellref = range.Address
Else
	cellref = ""
End If
​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Notice there are three input parameters to the Code stage: handle, text, and sheetName. This assumes you're looking for the text value in a specific worksheet. If the value is found it will return the specific cell. There are several properties you can set within Excel. This is just the most basic option.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Eric&lt;/P&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>Fri, 05 Mar 2021 14:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88417#M38964</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-03-05T14:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88418#M38965</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="ec0763e3-5c6d-4d6a-a05d-60996da41be4" data-tag-text="@Jordan Wain" href="https://community.blueprism.com/network/profile?UserKey=ec0763e3-5c6d-4d6a-a05d-60996da41be4" data-itemmentionkey="0e43cbd1-2e53-4d1e-955a-ec83568ff70b"&gt;@Jordan Wain&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;I just realized there is a Find action on the Excel - Extended VBO. You can find it here: &lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-vbo---extended" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-vbo---extended&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I don't see a Replace method, but you should be able to implement that fairly easily once you have the cell references for where your search text is found.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&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>Fri, 05 Mar 2021 14:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88418#M38965</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-03-05T14:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88419#M38966</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="ec0763e3-5c6d-4d6a-a05d-60996da41be4" data-tag-text="@Jordan Wain" href="https://community.blueprism.com/network/profile?UserKey=ec0763e3-5c6d-4d6a-a05d-60996da41be4" data-itemmentionkey="be1075b8-c507-4015-8a31-53da0e948ed9"&gt;@Jordan Wain&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;One last update on this. I went ahead and had new actions added to the core &lt;STRONG&gt;MS Excel&lt;/STRONG&gt; VBO​. The actions are&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Find in Worksheet&lt;/STRONG&gt;&lt;/EM&gt; and&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Replace in Worksheet&lt;/STRONG&gt;&lt;/EM&gt;. I believe they'll give you what you're looking for. You can get the latest version of the core VBO here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-blue-prism-utility" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-blue-prism-utility&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&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>Fri, 05 Mar 2021 23:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88419#M38966</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-03-05T23:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88420#M38967</link>
      <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;Good work! (...and speedy too!)&lt;BR /&gt;I was planning to download it but lack access to the link (as usual...). Still have a question though: Is the modification to the VBO tied to a specific version of BP?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Happy coding!&lt;BR /&gt;Paul&lt;BR /&gt;Sweden&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Mar 2021 10:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88420#M38967</guid>
      <dc:creator>PvD_SE</dc:creator>
      <dc:date>2021-03-09T10:48:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88421#M38968</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2208"&gt;@PvD_SE&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;The changes were developed in v6,.9 of Blue Prism, but we ran the exported XML through the Studio Display Fix utility, also available on the DX. So, while I haven't specifically tested every version of BP, this should be usable back to v6 I imagine.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&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>Tue, 09 Mar 2021 11:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88421#M38968</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-03-09T11:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88422#M38969</link>
      <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;could you please advice how can i get the &lt;EM&gt;&lt;STRONG&gt;Replace in Worksheet&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;excel VBO. i am unable to download due to access denied. we are in need as our windows 10 upgrade impacted lot of our process excel spying objects, and we are in the process of removing spying objects and use default Excel VBO.&lt;BR /&gt;&lt;BR /&gt;could you please provide the code for : &lt;EM&gt;&lt;STRONG&gt;Replace in Worksheet, &lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;so i can modify the Excel Vbo .&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Satya&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Satyanarayana chinnapareddy&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sun, 27 Jun 2021 21:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88422#M38969</guid>
      <dc:creator>Satyanarayanach</dc:creator>
      <dc:date>2021-06-27T21:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88423#M38970</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/45909"&gt;@Satyanarayanach&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Is the access denied message being displayed by the Digital Exchange, or your corporate firewall? Were you logged into the DX?&lt;BR /&gt;&lt;BR /&gt;Cheers,​&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>Mon, 28 Jun 2021 12:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88423#M38970</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-06-28T12:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88424#M38971</link>
      <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;Thanks for your response.&lt;BR /&gt;&lt;BR /&gt;i was able to login into DX and able to download other assets except the below link:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-blue-prism-utility" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-blue-prism-utility&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="23896.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/24029i8C2D1E48CDC9F553/image-size/large?v=v2&amp;amp;px=999" role="button" title="23896.png" alt="23896.png" /&gt;&lt;/span&gt;&lt;BR /&gt;i even logged a ticket as well, still waiting for support team response.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Satya&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Satyanarayana chinnapareddy&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Jun 2021 12:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88424#M38971</guid>
      <dc:creator>Satyanarayanach</dc:creator>
      <dc:date>2021-06-28T12:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88425#M38972</link>
      <description>Hi,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Got the same problem. Access denied to &lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-blue-prism-utility" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/9648/solution/ms-excel-blue-prism-utility&lt;/A&gt;&lt;BR /&gt;No problem to download another assets&lt;BR /&gt;&lt;BR /&gt;br&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;philippe boutry&lt;BR /&gt;Blueprism Solution designer&lt;BR /&gt;Aubay&lt;BR /&gt;Europe/Paris&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Jun 2021 11:30:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88425#M38972</guid>
      <dc:creator>pboutry</dc:creator>
      <dc:date>2021-06-30T11:30:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88426#M38973</link>
      <description>The link for the MS Excel VBO has been updated. You can access the VBO at the following link:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/ms-excel-vbo" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/ms-excel-vbo&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&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, 30 Jun 2021 12:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88426#M38973</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-06-30T12:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88427#M38974</link>
      <description>Hi Eric Wilson,&lt;BR /&gt;I tried to use replace worksheet action provided in excel vbo but its not working its replacing the entire worksheet with the new text value.&lt;BR /&gt;suppose i want to replace * with null in the worksheet then this action replaces all the cell values to null.&lt;BR /&gt;can you please provide a solution for this?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Salman Shaik&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Aug 2022 19:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88427#M38974</guid>
      <dc:creator>salman_shaik</dc:creator>
      <dc:date>2022-08-08T19:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: Excel Code Stage- Find and Replace</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88428#M38975</link>
      <description>Hello &lt;A class="user-content-mention" data-sign="@" data-contactkey="cc3198eb-c3ec-4e75-a199-6fd33c706606" data-tag-text="@Salman Shaik" href="https://community.blueprism.com/network/profile?UserKey=cc3198eb-c3ec-4e75-a199-6fd33c706606" data-itemmentionkey="6df07e9d-fc0c-43c3-9ff6-05c2de03ebbe"&gt;@Salman Shaik&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;The functions worked as designed. The issue you're encountering is that "*" is a standard wildcard character in Excel as is "?".​ To search for the actual "*" character as opposed to using it as a wildcard you should try prepending a tilde "~" to the asterisks, so your search text will actually be "~*".&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2022 13:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Excel-Code-Stage-Find-and-Replace/m-p/88428#M38975</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-09T13:44:00Z</dc:date>
    </item>
  </channel>
</rss>

