I have a table with 3 fields ID, Suffix, Date
The ID & suffix combined make up the primary index ... I have a form which finds the last entry (by date) via the form load event ... the form record source then uses the found ID to find all the associated id-suffix records. Using DESC on the date field gets the correct first record but there is confusion because the record suffix is opposite the record counters ie assume 4 suffixes of 1, 2, 3 and 4 as the date for 4 will be the latest it will then show up as record 1 suffix 4 record 2 suffix 3 etc ... if I instead order the records in matching order then the form ends up starting on record 1 suffix 1 ... is there some way to move the opening record block to the last record using code? I am thinking one of the later open form events (like got focus) might be used to submit a recordset position?
The ID & suffix combined make up the primary index ... I have a form which finds the last entry (by date) via the form load event ... the form record source then uses the found ID to find all the associated id-suffix records. Using DESC on the date field gets the correct first record but there is confusion because the record suffix is opposite the record counters ie assume 4 suffixes of 1, 2, 3 and 4 as the date for 4 will be the latest it will then show up as record 1 suffix 4 record 2 suffix 3 etc ... if I instead order the records in matching order then the form ends up starting on record 1 suffix 1 ... is there some way to move the opening record block to the last record using code? I am thinking one of the later open form events (like got focus) might be used to submit a recordset position?