View Single Post
  #2 (permalink)  
Old 02-14-2008, 08:13 AM
TonyES TonyES is offline
Member
 
Join Date: Oct 2007
Posts: 41
iTrader: (0)
TonyES is on a distinguished road
Default

The query for the report would be: SELECT * FROM tblBoardOrders WHERE OrderedDate Is Null.
After running the report from VBA code you would put the following:
CurrentDB.Execute "UPDATE tblBoardOrders SET OrderedDate = Date() WHERE OrderedDate is Null"
Reply With Quote