I know that:
DMin("DatePaid","tblTransactions","TranID = " & me.TranID)
-This will give me the first payment date from tbltransactions based on form's TransactionID.
DMax("DatePaid","tblTransactions","TranID = " & me.TranID)
-This will give me the last payment date from tbltransactions based on form's TransactionID.
How about getting the DatePaid value of the previous record based from the last record? Any code for this one? Thanks in advance.
DMin("DatePaid","tblTransactions","TranID = " & me.TranID)
-This will give me the first payment date from tbltransactions based on form's TransactionID.
DMax("DatePaid","tblTransactions","TranID = " & me.TranID)
-This will give me the last payment date from tbltransactions based on form's TransactionID.
How about getting the DatePaid value of the previous record based from the last record? Any code for this one? Thanks in advance.