Dlookup last sales price

  • Thread starter Thread starter Abdul Shakeel
  • Start date Start date
A

Abdul Shakeel

In northwind database on orders form is it possible to Dlookup unit sales
price for a specific product from its very last order.
 
In northwind database on orders form is it possible to Dlookup unit sales
price for a specific product from its very last order.  

Normally you would do one of two things -
either change the price in the Products table and update the Invoice
Line Items table with the current price when doing the data entry or
have a Prices table (ProductID (PK1), EffectiveDate (PK2), Price)
 
Back
Top