Any ideas on why the following filter for a recordset woks on my home computer using Access2000 but not on my work computer using Access2002?
rstBusGroupIn.Filter = "[ArrDay] = " & "'" & ArrOrder(i) & "'" & " And [AssignThisArrival] = 1 And [BellmanArrival] = 10"
I need to filter the recordset rstBusGroupsIn for groups that arrive on a certain day, which is held in an array ArrOrder, and the field AssignThisArrival is true, and the value for BellmanArrival is 10.
This filter is executed seven times as part of a loop that runs through the ArrOrder array, with actions taken for each days group arrivals. Thanks, Rob
rstBusGroupIn.Filter = "[ArrDay] = " & "'" & ArrOrder(i) & "'" & " And [AssignThisArrival] = 1 And [BellmanArrival] = 10"
I need to filter the recordset rstBusGroupsIn for groups that arrive on a certain day, which is held in an array ArrOrder, and the field AssignThisArrival is true, and the value for BellmanArrival is 10.
This filter is executed seven times as part of a loop that runs through the ArrOrder array, with actions taken for each days group arrivals. Thanks, Rob