M
mark r
Three (3) questions:
The Where condition argument is a string.
If xdate and datefilter are in short date format mm/dd/yyyy
1. is this statement below correct?
2. should I be using parens () instead of brackets []
around
xdate?
Below, xxxxfilter is a string, then you have to delimit
with quotes:
3.what situations would xxxxfilter be a string?
The Where condition argument is a string.
If xdate and datefilter are in short date format mm/dd/yyyy
1. is this statement below correct?
[Forms]![test]![datefilter]DoCmd.OpenReport stDame, acPreview, , "[xdate] =" &
2. should I be using parens () instead of brackets []
around
xdate?
Below, xxxxfilter is a string, then you have to delimit
with quotes:
[Forms]![test]![xxxxfilter] & "'"DoCmd.OpenReport stDame, acPreview, , "[pushupp] = '" &
3.what situations would xxxxfilter be a string?