AccessDiscussion of Microsoft Access database design and programming. See also the forums for Access ASP and Access VBA.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Access section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I'm trying to sort the records of a form by an expression called
Val(ProvenienceNumber). The only way that I know how to do this is in Form view going to Records - Filter - Advanced Filter/Sort, entering the expression and filtering the records. How do I programatically get Access to do this on a OnLoad or OnOpen event so my clients don't have to do this every time they want to look at sorted records?
quote:Originally posted by mmcdonal
What is the record source of the Form? A query or table? If it is a query, then sort the query, and the form will reflect that sort.