I have a connected checkbox parameter that relies on a previous select list to limit the choices:
SELECT DISTINCT c.CID, c.CName
FROM smi.crp c
WHERE c.GID = mydbr_param_prev1
ORDER BY c.CName;
I would like all checkboxes to default to 'checked':
SELECT
GROUP_CONCAT(c.CID)
FROM smi.crp c
BUT, this doesn't work when the select list choice changes. And I don't seem to be able to use mydbr_param_prev1 in the default selection parameter query.
Is this possible? Or am I doing something wrong?
Also, are there any plans in the future for using Checkboxes as the SOURCE for a connected parameter instead of just Select Lists or Radio Buttons?
Thank you,
Cris