Jump to content

Recommended Posts

Posted

Hi,

Is there someone who could help me with converting Excel text cells in cells with hyperlinks? I've many hyperlinks in Excel in a column, but they are in text format.

What I want is that the links are clickable, so that they open in a browser. I don't have many experience with Office in combination with autoit. Maybe there is someone who has an example script. Any help is very welcome!

Thank you :graduated:

Posted

Please hava a look at the Excel UDF function _ExcelHyperlinkInsert: Inserts a hyperlink into the active page.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Posted (edited)

Maybe there is someone who has an example script. Any help is very welcome!

This is just that. An Example. Please test before using it.

#include <Excel.au3>
$Count = 0
$oExcel = _ExcelBookOpen(@DesktopDir & "\Book.xls", 0);0 = file not visible
$Count = $oExcel.Worksheets(1).Usedrange.Rows.Count
For $i = 1 To $Count
    $sCellValue = _ExcelReadCell($oExcel, $i, 2);row = $i number, col = 2 (B)
    _ExcelHyperlinkInsert($oExcel, $sCellValue, $sCellValue, $sCellValue, $i, 2)
    ;Correct use:
    ;_ExcelHyperlinkInsert($oExcel, $sLinkText, $sAddress, $sScreenTip, $sRangeOrRow [, $iColumn = 1])
Next
_ExcelBookClose($oExcel)
$oExcel = _ExcelBookOpen(@DesktopDir & "\Book.xls", 1);1 = file is visible
Edited by JoHanatCent
Posted

This is just that. An Example. Please test before using it.

#include <Excel.au3>
$Count = 0
$oExcel = _ExcelBookOpen(@DesktopDir & "\Book.xls", 0);0 = file not visible
$Count = $oExcel.Worksheets(1).Usedrange.Rows.Count
For $i = 1 To $Count
    $sCellValue = _ExcelReadCell($oExcel, $i, 2);row = $i number, col = 2 (B)
    _ExcelHyperlinkInsert($oExcel, $sCellValue, $sCellValue, $sCellValue, $i, 2)
    ;Correct use:
    ;_ExcelHyperlinkInsert($oExcel, $sLinkText, $sAddress, $sScreenTip, $sRangeOrRow [, $iColumn = 1])
Next
_ExcelBookClose($oExcel)
$oExcel = _ExcelBookOpen(@DesktopDir & "\Book.xls", 1);1 = file is visible

Thank you for your help, you set me on the right path!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...