I have report which has an input parameter for the user to enter for a particular stored procedure. It works fine. At the end of the day I have 4 of these reports I want to execute in automated mode. I know what the parameters are going to be,I just want to fire off 4 docmd.openreport commands without operator intervention.
Is there a way of bypassing the INPUT PARAMETER code in VB or do I just have to create another report and have it call another stored procedure without the parameters? I didn't want to start creating extra reports and stored procedures.
My INPUT PARAMETER looks something like this
@Date =[Enter in Date or Press 'Enter' for Today], the stored procedure has a parm @Date which drives the WHERE condition.
Is there a way of bypassing the INPUT PARAMETER code in VB or do I just have to create another report and have it call another stored procedure without the parameters? I didn't want to start creating extra reports and stored procedures.
My INPUT PARAMETER looks something like this
@Date =[Enter in Date or Press 'Enter' for Today], the stored procedure has a parm @Date which drives the WHERE condition.