I have table1/field1 with a date that is in the Date/Time format. Now I'm querying two different tables, one of these tables is set with Date/Time format (table2/field1), the other is setup with only a Text format (table3/field1).
Querying table2/field1 is easy, however how do I change the format when it queries table3/field1 to query as a Text format. Below is what I have so far just in the Query Criteria
I'm querying with a Between and DateAdd Statement as below
Not Between DateAdd("d",[table2]![field1],-5) And DateAdd("d",[table2]![field1],5)
OR
Not Between DateAdd("d",[table3]![field1],-10) And DateAdd("d",[table3]![field1],10)
Any assistance would be appreciated.
Thanks!
Querying table2/field1 is easy, however how do I change the format when it queries table3/field1 to query as a Text format. Below is what I have so far just in the Query Criteria
I'm querying with a Between and DateAdd Statement as below
Not Between DateAdd("d",[table2]![field1],-5) And DateAdd("d",[table2]![field1],5)
OR
Not Between DateAdd("d",[table3]![field1],-10) And DateAdd("d",[table3]![field1],10)
Any assistance would be appreciated.
Thanks!