There's a question about creating active hyperlinks in Excel without resorting to a macro ... but suppose one does want to create a macro, or rather something in AppleScript?
I started to plunder the Excel for Mac's AppleScript dictionary ... and, so far, I've got this (presuming column 1 contains row upon row amounting to a URI in each cell, and none are activated):
tell application "Microsoft Excel"
activate
make new hyperlink of column 1 at active sheet with properties {address:column 1}
end tell
That almost works ... except each cell ends up being a hyperlink to http://www.microsoft.com/mac/ instead! (Nice touch there, MSFT. Hehe.) Seriously though, I can't help but think I'm pretty close here, but I'm not sure what I'm missing.
For comparison, here's a working Excel Macro (using a selection).
For Each xCell In Selection
ActiveSheet.Hyperlinks.Add Anchor:=xCell, Address:=xCell.Formula
Next xCell
Clues welcome and appreciated!