I currently have a simple parameter query based on a form with start and end dates. I am using a between expression:
Between [Forms]![qbf_e]![Begin_Date] and [Forms]![qbf_e]![End_Date]
And obviously this pulls data only between the two dates entered, not including data on the parameter dates.
I would like to modify the query to include the Start and End dates data, so I wrote an expression as follows:
>=[Forms]![qbf_e]![Begin_Date] And <=[Forms]![qbf_e]![End_Date]
But, it tells me the expression is too complex. Does anyone know a way around this? I'm not too knowledgable when it comes to SQL...
Thanks!
Between [Forms]![qbf_e]![Begin_Date] and [Forms]![qbf_e]![End_Date]
And obviously this pulls data only between the two dates entered, not including data on the parameter dates.
I would like to modify the query to include the Start and End dates data, so I wrote an expression as follows:
>=[Forms]![qbf_e]![Begin_Date] And <=[Forms]![qbf_e]![End_Date]
But, it tells me the expression is too complex. Does anyone know a way around this? I'm not too knowledgable when it comes to SQL...
Thanks!