G
Guest
The following is a where clause in my query. I am trying to pull up all records where the clock date is null, or where revision recieved is false and todays date is 55 or more days past the date in NOD Issue
WHERE ((([RMP Status].[RMP clock Date]) Is Null) AND (([RMP Status]![RMP Number])=[Latest RMP, Audit,SP,UI]![MaxOfRMP Number])) OR ((([RMP Status].[Revision Recieved])=False) AND (([RMP Status]![RMP Number])=[Latest RMP, Audit,SP,UI]![MaxOfRMP Number]) AND ((Date())>=[RMP Status]![NOD Issued]+55))
ORDER BY [SS Information].[Lead Reviewer]
however when my results come up I am getting information where while the date is 55 or more days after NOD Issued the response recieved values are true. DId I make a mistake somewhere
Thank Yo
Nicole
WHERE ((([RMP Status].[RMP clock Date]) Is Null) AND (([RMP Status]![RMP Number])=[Latest RMP, Audit,SP,UI]![MaxOfRMP Number])) OR ((([RMP Status].[Revision Recieved])=False) AND (([RMP Status]![RMP Number])=[Latest RMP, Audit,SP,UI]![MaxOfRMP Number]) AND ((Date())>=[RMP Status]![NOD Issued]+55))
ORDER BY [SS Information].[Lead Reviewer]
however when my results come up I am getting information where while the date is 55 or more days after NOD Issued the response recieved values are true. DId I make a mistake somewhere
Thank Yo
Nicole