<?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: Extract hyperlink from excel cell in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85654#M36617</link>
    <description>&lt;P&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="b15f2a92-433f-4219-ab60-018a65d901a2" data-tag-text="@Moses Kobe" href="https://community.blueprism.com/network/profile?UserKey=b15f2a92-433f-4219-ab60-018a65d901a2" data-itemmentionkey="37c6e830-6f25-4708-adb5-f06edcea19cf"&gt;@Moses Kobe&lt;/A&gt; - I just wrote a custom code you can add add as action in one of your excel extended objects, you can check params for input and output variables, add any exception handling if you want to-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="23794.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/23928iA362587884CC5C12/image-size/large?v=v2&amp;amp;px=999" role="button" title="23794.png" alt="23794.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Dim ws as Object = GetWorksheet( handle, workbookname, worksheetname)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Dim xlRange As Object = ws.Range(Range_Cell)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Dim dt As New DataTable()&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;dt.Columns.Add("Hyperlinks")&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;For Each cell As Object In xlRange&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt; If cell.Hyperlinks.Count &amp;gt; 0 Then&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt; dt.Rows.Add(cell.Hyperlinks(1).Address)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; End If&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Next cell&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Output_Collection = dt&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Input Excel-&lt;span class="lia-inline-image-display-wrapper" image-alt="23795.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/23927i9C370BD404C4E206/image-size/large?v=v2&amp;amp;px=999" role="button" title="23795.png" alt="23795.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Output -&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper" image-alt="23796.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/23929i0D224070B679189D/image-size/large?v=v2&amp;amp;px=999" role="button" title="23796.png" alt="23796.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;let me know if you find any difficulties with this.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Mukesh K&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jan 2024 09:46:00 GMT</pubDate>
    <dc:creator>Mukeshh_k</dc:creator>
    <dc:date>2024-01-18T09:46:00Z</dc:date>
    <item>
      <title>Extract hyperlink from excel cell</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85650#M36613</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have excel file which contains some hyperlinks. I want read that hyperlink. how can i get it?&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Rohini Patil&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Sep 2021 14:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85650#M36613</guid>
      <dc:creator>RohiniPatil</dc:creator>
      <dc:date>2021-09-29T14:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extract hyperlink from excel cell</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85651#M36614</link>
      <description>Hello Rohini,&lt;BR /&gt;If the cell where the hyperlink is embedded is static you can ready that cell value as text and store in data item and try using that as an input to launch your hyperlink.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;Best Regards,&lt;BR /&gt;Ved Sengupta&lt;BR /&gt;RPA Developer&lt;BR /&gt;Deloitte India (Offices of the US)&lt;BR /&gt;Bangalore | INDIA&lt;BR /&gt;*If you find this post helpful mark it as best answer*&lt;BR /&gt;------------------------------&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 30 Sep 2021 10:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85651#M36614</guid>
      <dc:creator>VedSengupta</dc:creator>
      <dc:date>2021-09-30T10:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extract hyperlink from excel cell</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85652#M36615</link>
      <description>&lt;P&gt;No, i try that but i was getting name of that hyperlink e.g if its display ABC as link then output was ABC not the hyperlink.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you. we have resolved it by writing code stage to get URL&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Rohini Patil&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 30 Sep 2021 12:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85652#M36615</guid>
      <dc:creator>RohiniPatil</dc:creator>
      <dc:date>2021-09-30T12:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extract hyperlink from excel cell</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85653#M36616</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/27306"&gt;@RohiniPatil1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Can you please share the code you had to write to get the links?&amp;nbsp;&lt;BR /&gt;Thank You.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Moses Kobe&lt;BR /&gt;Developer&lt;BR /&gt;Discovery Limited&lt;BR /&gt;Johannesburg&lt;BR /&gt;0824899205&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Jan 2024 07:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85653#M36616</guid>
      <dc:creator>Moses19</dc:creator>
      <dc:date>2024-01-17T07:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extract hyperlink from excel cell</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85654#M36617</link>
      <description>&lt;P&gt;Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="b15f2a92-433f-4219-ab60-018a65d901a2" data-tag-text="@Moses Kobe" href="https://community.blueprism.com/network/profile?UserKey=b15f2a92-433f-4219-ab60-018a65d901a2" data-itemmentionkey="37c6e830-6f25-4708-adb5-f06edcea19cf"&gt;@Moses Kobe&lt;/A&gt; - I just wrote a custom code you can add add as action in one of your excel extended objects, you can check params for input and output variables, add any exception handling if you want to-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="23794.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/23928iA362587884CC5C12/image-size/large?v=v2&amp;amp;px=999" role="button" title="23794.png" alt="23794.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Dim ws as Object = GetWorksheet( handle, workbookname, worksheetname)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Dim xlRange As Object = ws.Range(Range_Cell)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Dim dt As New DataTable()&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;dt.Columns.Add("Hyperlinks")&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;For Each cell As Object In xlRange&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt; If cell.Hyperlinks.Count &amp;gt; 0 Then&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt; dt.Rows.Add(cell.Hyperlinks(1).Address)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; End If&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Next cell&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;&lt;SPAN style="color: #3598db;"&gt;&lt;STRONG&gt;Output_Collection = dt&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Input Excel-&lt;span class="lia-inline-image-display-wrapper" image-alt="23795.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/23927i9C370BD404C4E206/image-size/large?v=v2&amp;amp;px=999" role="button" title="23795.png" alt="23795.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Output -&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper" image-alt="23796.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/23929i0D224070B679189D/image-size/large?v=v2&amp;amp;px=999" role="button" title="23796.png" alt="23796.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;let me know if you find any difficulties with this.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Mukesh K&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 09:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85654#M36617</guid>
      <dc:creator>Mukeshh_k</dc:creator>
      <dc:date>2024-01-18T09:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extract hyperlink from excel cell</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85655#M36618</link>
      <description>&lt;P&gt;Thank you, I will look into it.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Moses Kobe&lt;BR /&gt;Developer&lt;BR /&gt;Discovery Limited&lt;BR /&gt;Johannesburg&lt;BR /&gt;0824899205&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Jan 2024 10:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extract-hyperlink-from-excel-cell/m-p/85655#M36618</guid>
      <dc:creator>Moses19</dc:creator>
      <dc:date>2024-01-18T10:31:00Z</dc:date>
    </item>
  </channel>
</rss>

