I don't even know how to search this to see if there is a faq already made on this, but let me explain my situation and then maybe it will make sense to somebody. I have two tables, One with instrument numbers, and then another table joined with instrument numbers that has all the data for each instrument. Right now I pass a date from a user form to the query to pull up the data that is after this date:
>=(Date()-[Forms]![Query Builder]![days])
What I want to do is if a checkbox is checked: IIf([Forms]![Query Builder]![incal]=True,true,false)
Then if true, find if an instrument number has data from the past 6 months. If it has, get all data from that instrument same as above. If not, don't display any data for that instrument and move on. I hope that makes sense....
>=(Date()-[Forms]![Query Builder]![days])
What I want to do is if a checkbox is checked: IIf([Forms]![Query Builder]![incal]=True,true,false)
Then if true, find if an instrument number has data from the past 6 months. If it has, get all data from that instrument same as above. If not, don't display any data for that instrument and move on. I hope that makes sense....