Please Help!
In Access, you could enter an unknown parameter in the criteria and you will be prompted to enter the unknown value. The following is a sample WHERE:
WHERE (((qryBatchMFGInvoiceSum.MFG) = [Enter MFG Number, 5 positions]) AND ((qryBatchMFGInvoiceSum.MinOfInvoiceDate)
>= [Enter Beginning Invoice Date, 8 positions] AND (qryBatchMFGInvoiceSum.MinOfInvoiceDate) <= [Enter Ending Invoice Date, 8 positions])
The [Enter xxx] would cause a prompt and tell the user what you are looking for. Does SQL Server allow this in any way?
In Access, you could enter an unknown parameter in the criteria and you will be prompted to enter the unknown value. The following is a sample WHERE:
WHERE (((qryBatchMFGInvoiceSum.MFG) = [Enter MFG Number, 5 positions]) AND ((qryBatchMFGInvoiceSum.MinOfInvoiceDate)
>= [Enter Beginning Invoice Date, 8 positions] AND (qryBatchMFGInvoiceSum.MinOfInvoiceDate) <= [Enter Ending Invoice Date, 8 positions])
The [Enter xxx] would cause a prompt and tell the user what you are looking for. Does SQL Server allow this in any way?