VB script, Macro Help!!!. Build a Hyperlink Generator.

manoj18071965

Board Regular
Joined
Sep 16, 2011
Messages
65
Hello,

I have a list of Patent numbers in an excel sheet. I just wanted to know if following is feasible in excel:

1. I need a script so that each of the respective patent number (there 'web home page address' e.g. Patent number: 4456785 http://www.google.com/patents?id=jzs...ed=0CC8Q6AEwAA) can be automatically pasted on next column of each patent number.

2. Please note Patent Numbers available on excel sheet does not contain hyperlinks.

3. I am using MS Office 2007

Hoping for a positive response from you all.

Thanks,
Manoj Kumar
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
The URL google gives me is:

Code:
http://www.google.com/search?q=4456785&tbm=pts&tbo=1&hl=en

So you should be able to generate links like so (assume patent # is in cell A1):

=HYPERLINK("http://www.google.com/search?q=" & A1 & "&tbm=pts&tbo=1&hl=en")
 
Upvote 0
Hi Jan,

Thank you very much!!!

It really helped me a lot.

Can you please help me on below case also:

On the basis of Patent Number I want to download its PDF file from website.http://worldwide.espacenet.com

Example: If I search Patent number US7157984 on http://gb.espacenet.com/search97cgi/s97_cgi.exe?Action=FormGen&Template=gb/en/number.hts
I reach to following address http://worldwide.espacenet.com/sear...&F=0&CY=gb&LG=en&&PN=US7157984+&Submit=SEARCH
Now if I open the provided link on this page (1. MEMS-based, computer systems, clock generation and oscillator circuits and LC-tank apparatus for use therein)
And then press 'Original document' link (Provided on the middle left side)
I reach to Original document page
Here If I press Download link, I reach to Espacenet Verification window.


I only want to reach till here only and then after I can further manually download the pdf file.

Thanks,
Manoj Kumar
 
Upvote 0
If you right-click the "Original document" link and select copy shortcut, you can then paste that shortcut into Excel.
Maybe you can find out how to build the HYPERLINK formula using that shortcut and the example I provided earlier?
 
Upvote 0
The shortcut I could copy using my Internet Explorer right-click menu is:
Code:
http://worldwide.espacenet.com/publicationDetails/originalDocument?CC=US&NR=2006049885A1&KC=A1&FT=D&date=20060309&DB=EPODOC&locale=en_gb
 
Upvote 0
I expect you would need this:

Suppose cell A1 contains:

US2006049885

Then if I understand the URL correctly, this should give you a direct link to the download:

=HYPERLINK("http://worldwide.espacenet.com/publicationDetails/originalDocument?CC="&LEFT(A1,2)&"&NR="&MID(A1,3,LEN(A1))&"A1&KC=A1&FT=D&date=20060309&DB=EPODOC&locale=en_gb")
 
Upvote 0
Yes your understanding is right. But I need to apply this on a list

example:
US7358826
US7365614
US7132874
US7786812
US7248124
US7456699
 
Upvote 0
You can simply enter the list in cells A1, A2, A3, ... and then copy that formula down next to those items and click the links.
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top