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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sorting on a mingled field

Status
Not open for further replies.

Karja

Programmer
Apr 20, 2006
43
LU
Goodmorning,

I am trying to sort a listbox on a field that is the result of two fields combined with an iff-function. De query works fine untill I try to sort on one of the mingled fields (con1 or con2). The system just prompts for the variable Con1.

Q: How do I tell the system that it should sort on Con1? Below the specific code that is giving me problem.

Code:
Sub Contacts_Initialize()
    
listConSQL = "SELECT ID, Organisatie, Achternaam1 & iif(isnull(achternaam1),'',', ') & Voorletters1 as Con1, Achternaam2 & iif(isnull(achternaam2),'', ', ') & Voorletters2 as Con2 " & _
             "FROM tbl_Contacten"
orderConSQL = "Con1 ASC"
    
With Form_Contacts
     .listContacts.RowSource = listConSQL & " ORDER BY " & orderConSQL
     Set RsClone = .RecordsetClone
     .listContacts.Value = RsClone![ID]
     Set RsClone = Nothing
End With
End Sub

Thanks ahead in time, any help appreciated.
 
Use the ordinal position of the field:
orderConSQL = "3 ASC" ' Con1
orderConSQL = "4 ASC" ' Con2

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Perfect. Just what I needed. Many thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top