I have a report with multi-value parameter from a sql query:
SELECT USER_ID, USER_NAME FROM USERS
I want to set the default of that parameter with a where clause. The default I want to set:
SELECT USER_ID, USER_NAME FROM USERS WHERE STATUS = 'ACTIVE'
I create 2 separate dataset with the above query, the 1st one is set as the available values, the 2nd one is set as the default values, it could work.
My question is, is there a better way to do that without creating another dataset? Thank you!