I'm passing a report an array of guids converted to strings, into a multivalue parameter. My question, is how do I now get the report to pass that to my SQL query? The query looks like this:
SELECT Name, Address, Address2, City, State, Zip, Phone, PrimaryContact, ExpirationDateFROM CompaniesWHERE (ID IN (@Companies))Thanks