<?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: How to break links in Excel workbook by BP? in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/How-to-break-links-in-Excel-workbook-by-BP/m-p/56281#M10496</link>
    <description>From the question asked in the subject line of this thread and the screenshot posted, it isn't immediately clear what you're looking for help with here. Could you please clarify what it is you're looking to do in Blue Prism with regard to links in an Excel workbook?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Steve Boggs&lt;BR /&gt;Senior Product Support Engineer&lt;BR /&gt;Blue Prism&lt;BR /&gt;Austin, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 15 Dec 2022 20:42:00 GMT</pubDate>
    <dc:creator>steven.boggs</dc:creator>
    <dc:date>2022-12-15T20:42:00Z</dc:date>
    <item>
      <title>How to break links in Excel workbook by BP?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-break-links-in-Excel-workbook-by-BP/m-p/56280#M10495</link>
      <description>&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="20660.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/20806i21613A28D5EB3FBA/image-size/large?v=v2&amp;amp;px=999" role="button" title="20660.png" alt="20660.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;立晨 姚&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 06:01:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-break-links-in-Excel-workbook-by-BP/m-p/56280#M10495</guid>
      <dc:creator>立晨姚</dc:creator>
      <dc:date>2022-12-15T06:01:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to break links in Excel workbook by BP?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-break-links-in-Excel-workbook-by-BP/m-p/56281#M10496</link>
      <description>From the question asked in the subject line of this thread and the screenshot posted, it isn't immediately clear what you're looking for help with here. Could you please clarify what it is you're looking to do in Blue Prism with regard to links in an Excel workbook?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Steve Boggs&lt;BR /&gt;Senior Product Support Engineer&lt;BR /&gt;Blue Prism&lt;BR /&gt;Austin, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 20:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-break-links-in-Excel-workbook-by-BP/m-p/56281#M10496</guid>
      <dc:creator>steven.boggs</dc:creator>
      <dc:date>2022-12-15T20:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to break links in Excel workbook by BP?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-break-links-in-Excel-workbook-by-BP/m-p/56282#M10497</link>
      <description>The UI should work for this, but if you can't get UI to work, then send keys:&lt;BR /&gt;&lt;BR /&gt;Alt&lt;BR /&gt;a&lt;BR /&gt;k&lt;BR /&gt;Alt b&lt;BR /&gt;Alt b&lt;BR /&gt;&lt;BR /&gt;Set for 100ms between keystrokes so it has time to move through the menu, screens, popup warnings, etc.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Michael Annis&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Dec 2022 15:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-break-links-in-Excel-workbook-by-BP/m-p/56282#M10497</guid>
      <dc:creator>MichaelAnnis1</dc:creator>
      <dc:date>2022-12-16T15:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: How to break links in Excel workbook by BP?</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-break-links-in-Excel-workbook-by-BP/m-p/56283#M10498</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Yes you can break the links in an excel file but you would need to create a new code action in the excel vbo. If you create a new action and add in the below code it should break the link you have requested. The inputs are Handle, WorkBook and LinkToBreak. You need to pass in the link you want to break as it appears in the excel file e.g. if the link shows as C:\mydocs\mytestfile.xlsx then the link you pass as an input must match it exactly. I havent tested the code below but I think this is how it should look and hopefully it works for you.&lt;BR /&gt;&lt;BR /&gt;Dim wb As Object&lt;BR /&gt;Dim excel As Object&lt;BR /&gt;&lt;BR /&gt;Try &lt;BR /&gt;&lt;BR /&gt;wb = GetWorkbook(Handle, Workbook)&lt;BR /&gt;excel = wb.Application&lt;BR /&gt;excel.ActiveWorkbook.BreakLink(LinkToBreak,1)&lt;BR /&gt;&lt;BR /&gt;Success = True&lt;BR /&gt;&lt;BR /&gt;Catch e As Exception&lt;BR /&gt;Success = False&lt;BR /&gt;Message = e.Message&lt;BR /&gt;Finally&lt;BR /&gt;wb = Nothing&lt;BR /&gt;End Try&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Michael ONeil&lt;BR /&gt;Technical Lead developer&lt;BR /&gt;NTTData&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sun, 18 Dec 2022 22:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-break-links-in-Excel-workbook-by-BP/m-p/56283#M10498</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2022-12-18T22:29:00Z</dc:date>
    </item>
  </channel>
</rss>

