Hey guys, i am using access database 2007, and i am developing a dvd loan database. I am struggling with the the return date. In the LoanDate the default value is Date(), and what i am trying to do is have the return date default value the LoanDate + Customer RentLength field. I thought the expression i would put in the default value would be
Code:
=[LoanDate] + [Customer]![RentLength]
But every time i do this it says "Database engine does not recognise either the field 'LoanDate' in a validated expression or the default value in the table 'Loan'
And even if do it the other way
Code:
=Date + [Customer]![RentLength]
It says "Could not find field 'Customer]![RentLength'"
Any help would be appreciated thanks