Hi: Is there a way to individually enclose or otherwise "fix" DV parameter values in a delimited list of strings? I'm finding it difficult to handle invalid strings formed by unescaped apostrophes, like, 'O'TOOLE','O'GRADY','D'ADDARIO'
As long as the string values are properly enclosed, I seem to be able to use Logical SQL in a secondary parm to 1) concatenate multiple values (by inserting concat. operators as delimiters) and 2) apply REPLACE logic to handle specific characters & substrings (as for URL navigation).
REPLACE(@parameter("pv_myParm", style="delimited", separator="||','||")('a&b','c&d'), '', '%26')
Thanks! Open of course to more robust, less cumbersome approaches! 😅