Trying to return values that have action dates(ActionDt) which fall between two dates that are inputted on my form CalendarMgr. ActionDt is the field name in my table and TxtDate0 and TxtDate1 are my date ranges from start to end in my form CalendarMgr. If the user doesn't select a date or only selects one date, I want to return all values that have not been restricted by any selected values, or nulls in this case. Below is my query expression. For now it's returning nothing. Not sure where I'm going wrong with this criteria. Thanks in advance!
[ActionDt] Between [Forms]![frmCalendarMgr]![TxtDate0] And ([Forms]![frmCalendarMgr]![TxtDate1]) Or (IsNull([Forms]![frmCalendarMgr]![TxtDate0])) Or (IsNull([Forms]![frmCalendarMgr]![TxtDate1]))