I create in MS Excel an email with the tracking number of their shipment.
To create the hyperlink in VBA I use
How can I create a hyperlink that only shows "ActiveSheet.Cells(11, 1).Value" instead of this long url.
Regards,
Gerrit
To create the hyperlink in VBA I use
VBA Code:
URL = "http://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&Requester=NES&AgreeToTermsAndConditions=yes&loc=en_nl&tracknum=" & ActiveSheet.Cells(11, 1).Value
Regards,
Gerrit