Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hyperlink Query

Status
Not open for further replies.

KeyserSoze1877

Programmer
Joined
Sep 6, 2001
Messages
95
Location
US
I have an Access DB.
In it there is a hyperlink field. I want to query the table and display the actual hyperlink address, not the text.

Say, table name is Test, field is Link.

select link from test

That displays the text of the page name like, Foxnews, I want displayed, thats behind it.


Help!
 
Maybe you should get a better name sucker!
 
Something like this ?
SELECT [Link], HyperlinkPart([Link],2) AS Address
FROM Test;

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top