I have a parameter query (checkbox) called 'Gender' that looks like this:
SELECT 'male', 'Male' UNION SELECT 'female', 'Female'
I want both boxes to be checked by default when a user first pulls up the report, so I made another parameter query (default) called 'Gender Default':
SELECT 'male', 'Male' UNION SELECT 'female', 'Female'
But when I first run the report, both boxes are unchecked. What am I doing wrong?
Thanks