A family of Microsoft relational database management systems designed for ease of use.
Access Q&A cannot receive or open database files.
To calculate Final Due Date in the query using an invoice date plus supplier terms stored in another table, use a calculated field expression in the query that joins to Supplier Information.
- Ensure the query includes both:
- The table (or query) that has [Invoice Date Used for Calc Actual or Est]
- The table Supplier Information, joined on the appropriate key (for example SupplierID).
- In Query Design View, add a new column in the Field row and enter an expression like:
Final Due Date: [Invoice Date Used for Calc Actual or Est] + [Supplier Information].[Payment Terms]
This assumes:
- [Invoice Date Used for Calc Actual or Est] is a Date/Time field.
- [Payment Terms] is a Number field representing the number of days to add.
Access will then calculate Final Due Date for each row when the query runs.
For more complex date logic (for example, using functions like DateDiff or DateAdd), a similar calculated field can be created in the query’s Field row.
References: