Thanks for clarifying Kelly, I was confusing the picklist question here with another post you have going relating to the Oracle error on a catalog picklist.
Sounds like you may have an automated process that creates the the approved carrier list. Anyway you could get this to be loaded in the same database as your report datasource? If so the logic to look for carriers not in your list would be easier to achive without intervention. This approach done directly in Impromptu would require an outer join to look for rows without a match in the 'good carrier' table, which may entail a performance hit. If you could get the data into the database, another approach might be a database view using a sub select, as in
CREATE VIEW BAD_CARRIERS AS
SELECT CARRIER, etc FROM TABLE1
WHERE CARRIER NOT IN
(SELECT CARRIER FROM EXCL_CARRIERS);
[language may vary depending on your data source]
The alternatives are to try to kludge something with SendKeys, or to use a text ODBC driver to try to create a hotfile you could include with your report.
Sorry for misreading your intent in the report. It's always dangerous, but often necessary to make assumptions about what someone is trying to accomplish.
Regards,
Dave Griffin