Hello,
I have two tables, tblLog, and tblCalendarDump. They both have the following Fields: WorkOrderID, CalendarEventID, and CreateDateCalendar.
tblLog holds records that are to include information pulled by tblCalendarDump. They both have WorkOrderID fields populated, so I need to find the WorkOrder ID, then update the tblLog CalendarEventID, and CreateDateCalendar fields with the data that is in the tblCalendarDump table.
The tblCalendarDump is just to hold this data when I pull it in from an ODBC link. The reason I'm doing this is that the information on this record is coming from several sources....this is one of them.
Is this possible with an update query or am I opening two recordsets in VBA? looking for the quickest batch style solution.
I have two tables, tblLog, and tblCalendarDump. They both have the following Fields: WorkOrderID, CalendarEventID, and CreateDateCalendar.
tblLog holds records that are to include information pulled by tblCalendarDump. They both have WorkOrderID fields populated, so I need to find the WorkOrder ID, then update the tblLog CalendarEventID, and CreateDateCalendar fields with the data that is in the tblCalendarDump table.
The tblCalendarDump is just to hold this data when I pull it in from an ODBC link. The reason I'm doing this is that the information on this record is coming from several sources....this is one of them.
Is this possible with an update query or am I opening two recordsets in VBA? looking for the quickest batch style solution.