NEvermind - I figured out how to do it - much simpler manner - I found in the properties of the Access form an area called "order by" and i typed in "MF_ID".
Glad you fixed it. If you need to do it in code some day, it would be:
Me.OrderBy = "MF_ID"
Me.OrderByOn = True
The OrderBy property value is a string containing a partial SQL statement (the part in the ORDER BY clause). You wanted the name of the field, but Me![mf_id] assigned the field's value instead. That's why it didn't work. Rick Sprague
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.