I'm trying to use the SQLList parameter type for the first time and am running into some issues. The actual part of the WHERE clause in my SQL looks like this:
WHERE ISNULL(nl.[Status], 'None') IN %1
yet, when I attempt to run the WebReport that uses this live report I receive an error. I have figured out the syntax that i need the parameters to be in executing the LiveReport by itself, but I can't get it to work the same way running the WebReport. For instance, a single value such as status "Pending" needs to have the quotes around it when passed into the LiveReport to return results. However, when I try the same exact value as the default parameter in my WebReport, I receive a Content Server error. Any thoughts as to what I might be doing wrong or the correct way to go about using this SQLList? Thanks.