In PowerPrompts version 7, I created a list box dynamo to allow for multiple selections. In the script to filter the report I have:
GetQuery().AndFilterBy("[\\folder\\column] in (" + App.Variables("MyColumn" + ""
What I end up with is the following, but I need to add in single quotes as a delimiter.
GetQuery().AndFilterBy("[\folder\column] in (12,17,24)"
Shouldn't it be smart enough to add the single quotes, and if not, how do I add them?
GetQuery().AndFilterBy("[\\folder\\column] in (" + App.Variables("MyColumn" + ""
What I end up with is the following, but I need to add in single quotes as a delimiter.
GetQuery().AndFilterBy("[\folder\column] in (12,17,24)"
Shouldn't it be smart enough to add the single quotes, and if not, how do I add them?