I'm trying to create a report from an ODBC data source and am having problems.
Query
Select Region,Site,Repair
from Expenses
where Region IN(?)
When I try to use a multi-value parameter I get this message
Cannot add Multi-Value Query Parameter '?' for Data Set 'Expenses' because it's not supported by the data extension. I've tried to look up how to correct it but to no avail. Any Suggestions. Thanks
Query
Select Region,Site,Repair
from Expenses
where Region IN(?)
When I try to use a multi-value parameter I get this message
Cannot add Multi-Value Query Parameter '?' for Data Set 'Expenses' because it's not supported by the data extension. I've tried to look up how to correct it but to no avail. Any Suggestions. Thanks