Jan 28, 2004 #1 ooops MIS Dec 21, 2000 91 US In the expression builder for my text box (on my report) I have: ="I hereby acknowledge receipt of the " & [tblJCode]![Correction_Year] & " correction..." How do I query it to the record I want ? In this case it should go to the last record. Thanks.
In the expression builder for my text box (on my report) I have: ="I hereby acknowledge receipt of the " & [tblJCode]![Correction_Year] & " correction..." How do I query it to the record I want ? In this case it should go to the last record. Thanks.
Jan 28, 2004 #2 SiJP Programmer May 8, 2002 708 GB Hi ooops. Try this: ="I hereby acknowledge receipt of the " & DMax([Correction_Year],"tblJCode" In this example I have values 2001 - 2004 in the field. Any good? Upvote 0 Downvote
Hi ooops. Try this: ="I hereby acknowledge receipt of the " & DMax([Correction_Year],"tblJCode" In this example I have values 2001 - 2004 in the field. Any good?