A
Alicia
SQL:
SELECT Test.[ID], Test.[First Name], Test.[Last Name], Test.[Crane
Certification], Test.[Physical], Test.[Lincense], Test.[Safety Card]
FROM Test
WHERE ((Year([Physical])=Year(Now()) And
Month([Physical])=Month(Now()))) OR ((Year([Crane
Certification])=Year(Now()) And Month([Crane
Certification])=Month(Now())));
The formula above will pull everything from Physical and Crane
Certification for the Current Month but, when I try to do and or
criteria to add Lincense and Safety Card to query the formula will not
work.
SELECT Test.[ID], Test.[First Name], Test.[Last Name], Test.[Crane
Certification], Test.[Physical], Test.[Lincense], Test.[Safety Card]
FROM Test
WHERE ((Year([Physical])=Year(Now()) And
Month([Physical])=Month(Now()))) OR ((Year([Crane
Certification])=Year(Now()) And Month([Crane
Certification])=Month(Now())));
The formula above will pull everything from Physical and Crane
Certification for the Current Month but, when I try to do and or
criteria to add Lincense and Safety Card to query the formula will not
work.