Jul 27, 2001 #1 bryn30 Technical User Mar 5, 2001 57 US In a MultiSelect ListBox (extended) is it possible to sort the list by clicking on the header of the column you are wanting to sort by?
In a MultiSelect ListBox (extended) is it possible to sort the list by clicking on the header of the column you are wanting to sort by?
Jul 27, 2001 #2 DougP MIS Dec 13, 1999 5,985 US No but you can sort it with home made buttons just change the "RowSource" I just grabbed this from my form change the Table1 and field to match yours me!List1.recordsource = "SELECT Table1.name, Table1.address, Table1.city, Table1.state FROM Table1 ORDER BY " & Table1.yourfield & ";" me!List1.requery then change the "yourfield" variable to what ever field you want to sort by DougP, MCP Visit my WEB site http://www.barcodeone.com to see how Bar-codes can help you be more productive Upvote 0 Downvote
No but you can sort it with home made buttons just change the "RowSource" I just grabbed this from my form change the Table1 and field to match yours me!List1.recordsource = "SELECT Table1.name, Table1.address, Table1.city, Table1.state FROM Table1 ORDER BY " & Table1.yourfield & ";" me!List1.requery then change the "yourfield" variable to what ever field you want to sort by DougP, MCP Visit my WEB site http://www.barcodeone.com to see how Bar-codes can help you be more productive