Hyperlink in excel macro -


i want method create hyperlink of variable in excel macro. requirement have capture link in variable ex:

abc = inputbox("enter path") 

now want use abc parameter hyperlink function , create hyperlink name xyz. can me solve issue?

ok, here code. doing 1. asking url want 2. storing url in variable called url 3. going sheet 1, adding hyperlink function cell a5, linking url input 4. displaying friendly name give in code

let me know if have questions | need modify code url want or place links want.

tested , working. please vote answer :)

sub createhyperlink() dim url string url = inputbox("enter link") worksheets("sheet1") .hyperlinks.add anchor:=.range("a5"), _ address:="http://www." & url, _ texttodisplay:="google" end end sub 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -