I am not sure why the following view selection formula does not work. I am trying to get all documents created after 08/01/2004. Can anyone give me some advice as to what I am doing wrong?
Thanks,
SELECT (Form=“Test Form”) & @Created <= [08/01/04]
I am not sure why the following view selection formula does not work. I am trying to get all documents created after 08/01/2004. Can anyone give me some advice as to what I am doing wrong?
Thanks,
SELECT (Form=“Test Form”) & @Created <= [08/01/04]
Subject: Date selection formula
You want documents after 8/1/04? Then use >.
Subject: RE: Date selection formula
Perfect, thanks for the help. It looks like it did not like the “=” sign.
Thanks again
Subject: RE: Date selection formula
Well, you were using <=, which would give you everything BEFORE or on 8/1/04, not after.