How would I pull information (into my form) from the next or previous record? I've tried this: Me!NextPartTitle.Value = DLookup("[PageTitle]", "Articles", "[ID] = " & [ID] + 1)
which gets me into trouble when the id doesn't exist. Do I have to loop till it finds a higher-numbered ID? Or will something akin to "Next Record" work? The documentation on Next Record says it'll move me to the next record - which isn't what I want - but I figured something's gotta be out there, some function or other, that handles this sorta thing. Any suggestions?
which gets me into trouble when the id doesn't exist. Do I have to loop till it finds a higher-numbered ID? Or will something akin to "Next Record" work? The documentation on Next Record says it'll move me to the next record - which isn't what I want - but I figured something's gotta be out there, some function or other, that handles this sorta thing. Any suggestions?