A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Access 2007: sort by hyperlink?



 
 
Thread Tools Display Modes
  #1  
Old March 7th, 2009, 07:50 PM posted to microsoft.public.access
Mikel Anne[_2_]
external usenet poster
 
Posts: 2
Default Access 2007: sort by hyperlink?

If you have a table with a column containing hyperlinks, can you sort by that
hyperlink column?
  #2  
Old March 7th, 2009, 08:03 PM posted to microsoft.public.access
Arvin Meyer MVP
external usenet poster
 
Posts: 640
Default Access 2007: sort by hyperlink?

Hyperlinks cannot be indexed or sorted.
"Mikel Anne" wrote in message
...
If you have a table with a column containing hyperlinks, can you sort by
that
hyperlink column?



  #3  
Old March 7th, 2009, 08:16 PM posted to microsoft.public.access
John J.
external usenet poster
 
Posts: 160
Default Access 2007: sort by hyperlink?

They can be sorted, at least in A2003.
John

"Arvin Meyer MVP" schreef in bericht
...
Hyperlinks cannot be indexed or sorted.
"Mikel Anne" wrote in message
...
If you have a table with a column containing hyperlinks, can you sort by
that
hyperlink column?





  #4  
Old March 7th, 2009, 09:01 PM posted to microsoft.public.access
Arvin Meyer MVP
external usenet poster
 
Posts: 640
Default Access 2007: sort by hyperlink?

Sorry, I sent that before checking on later versions. They could not be
sorted in earlier versions, they can from version 2002 on. I do not have
2000 on my machines at home to check. They cannot be indexed.

A better solution than using the hyperlink datatype, which is inefficient
anyway, is to use a text datatype which can be both sorted and indexed. If
you are using a form, you can use it as a hyperlink by simply
double-clicking with code like:

Private Sub txtBoxName_DblClick(Cancel As Integer)
If Len(Me.txtBoxName & vbNullString) 0 Then
Application.FollowHyperlink Me.txtBoxName
End If
End Sub
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


"Arvin Meyer MVP" wrote in message
...
Hyperlinks cannot be indexed or sorted.
"Mikel Anne" wrote in message
...
If you have a table with a column containing hyperlinks, can you sort by
that
hyperlink column?





 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:50 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.