What happen is the query only select the record inv_date >= certainDate,
but not the c_date >=certainDate.
when i try to set it to opposite
r.RecordSelectionFormula =
"{ViewReportTraking.c_date} >= DateValue('" & datefrom.ToString() & "') or {ViewReportTraking.inv_date} >= DateValue('" & datefrom.ToString() & "')"
I need query either inv_date or c_date >= certainDate.
Last edited by calvinkwoo3000; August 21st, 2007 at 03:55 AM.
Reason: wrong spelling
Are you wanting to retrieve records back where both the inv_Date and c_date are >= your "certain date"? If so change your "or" to "and", then you will get back records where both conditions are true.
No, i need either inv_date > certainDate or c_date > certainDate is true then query record.
but the 'or' look like not function, but the 'and' is function.
Last edited by calvinkwoo3000; August 20th, 2007 at 11:10 PM.
Bookmarks