agutleben Posted August 10, 2007 Posted August 10, 2007 I have a .fp5 database that sorts on a date field. When records are sorted, any record with a null value in the date field is located at the end of the sort order. When I converted to .fp7 (using FM 8.5) the sort order is correct, but the records containing the fields with a null value are located at the start of the record set. How can I fix this? Thanks in advance, Aaron
David Jondreau Posted August 10, 2007 Posted August 10, 2007 Create a calculation field of type date. =Case(IsEmpty(DateFIeld); "1/1/2100"; DateFIeld) and sort on that.
AudioFreak Posted August 10, 2007 Posted August 10, 2007 (edited) Or just put a bunk date that you know is BS in the date field you sort on now. Or if you can use FM 9 use the bunk date and use conditional formating to make it appear empty. Edited August 10, 2007 by Guest
Recommended Posts
This topic is 6316 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now