BlueJacket
Registered User.
- Local time
- Today, 18:19
- Joined
- Jan 11, 2017
- Messages
- 90
Basically, I want the criteria to check to see if the Option Frame is null. If it is null, I want the criteria to be Is Null OR "1" OR "2" OR "3" OR "4". If one of the options is checked, I want it to read Like "*" & [forms]![frmMainSearch]![frameClosed] & "*".
Is this possible? I was thinking of something like:
But I feel like quotation marks might be needed? And I'm still not sure how to make it return the if false statement with all of those other quotation marks.
Edit:
Or maybe this wouldn't work how I think it would...
My situation is this:
I have a main search form with a list box and I'm trying to incorporate some Option Frames to help filter out the list. The first option frame I want to use is to only show the properties in the list box that have either been Redeemed, Sold, or Reversed. There are other properties that haven't been Redeemed, Sold, or Reversed, and I want them to also show up in the list box when Option Frame is null.
Is this possible? I was thinking of something like:
Code:
IIf(IsNull([Forms]![frmMainSearch]![frameClosed]),Is Null OR "1" OR "2" OR "3" OR "4",Like "*" & [forms]![frmMainSearch]![frameClosed] & "*")
But I feel like quotation marks might be needed? And I'm still not sure how to make it return the if false statement with all of those other quotation marks.
Edit:
Or maybe this wouldn't work how I think it would...
My situation is this:
I have a main search form with a list box and I'm trying to incorporate some Option Frames to help filter out the list. The first option frame I want to use is to only show the properties in the list box that have either been Redeemed, Sold, or Reversed. There are other properties that haven't been Redeemed, Sold, or Reversed, and I want them to also show up in the list box when Option Frame is null.
Last edited: