Try with =HYPERLINK("http://www.google.com","search the web")
instead of =HYPERLINK("www.google.com";"search the web")
I believe you need something like this...
A B
yahoo yahoo (this will be hyperlink)
gmail gmail (this will be hyperlink)
google google (this will be hyperlink)
Use this to get above output
=HYPERLINK(CONCATENATE("http://www.",A1,".com"), A1)
Whenever you change content of Cell A, Cell B data will change
Hope this is what you needed!!!
Good Luck!!!
Update 1
Write yahoo in Cell A at first row...
In Cell B paste =HYPERLINK(CONCATENATE("http://www.",A1,".com"), A1)
and see magic...
Update 2
Write jira/bug-56
in Cell A at first row...
In Cell B paste =HYPERLINK(CONCATENATE("http://www.myjirahost.com/browse/",RIGHT(A1,6)), CONCATENATE("http://www.myjirahost.com/browse/",RIGHT(A1,6)))
and let me know if this is what you want...