Good evening all!
I'm using CR XI with SQL 2000. I have a check register report that I need to modify to show checks printed either by a date range or check number range.
I have created parameters for {?From Check Date}, {?To Check Date}, {?From Check Number}, and {?To Check Number}, as well as a parameter for Company number, {?Company}.
The current record selection formula I have is:
The company parameter is required.
This formula doesn't let me choose which parameter to run the report on. Right now, I need to enter values for all 4 parameters.
Is there some way I can enter only a company number, and then one set of values, either dates or check numbers?
Cheers,
Bob
I'm using CR XI with SQL 2000. I have a check register report that I need to modify to show checks printed either by a date range or check number range.
I have created parameters for {?From Check Date}, {?To Check Date}, {?From Check Number}, and {?To Check Number}, as well as a parameter for Company number, {?Company}.
The current record selection formula I have is:
Code:
{Table.CKCOMP} = {?Company} and
(({Table.CKCKDT} in {?From Check Date} to {?To Check Date}) or
({Table.CKCKNO} in {?FromCheckNo} to {?ToCheckNo}))
The company parameter is required.
This formula doesn't let me choose which parameter to run the report on. Right now, I need to enter values for all 4 parameters.
Is there some way I can enter only a company number, and then one set of values, either dates or check numbers?
Cheers,
Bob