I am using an 2 text boxes as input for a date range. All dates in our database is a string: yyyymmdd (example - 20090101). I am using the following RunSQL:
DoCmd.RunSQL "SELECT ...
"INTO mtblIssueSummary " & _
"FROM ...
"WHERE KWODS_ODS_TIDPBOOK.TRANS_DATE Between (txtStartDate) and (txtEndDate) " & _
I would like to have the start date go back 180 days from the user input. Is this possible?
Thanks, Dave
DoCmd.RunSQL "SELECT ...
"INTO mtblIssueSummary " & _
"FROM ...
"WHERE KWODS_ODS_TIDPBOOK.TRANS_DATE Between (txtStartDate) and (txtEndDate) " & _
I would like to have the start date go back 180 days from the user input. Is this possible?
Thanks, Dave