Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple selections in Dynamo

Status
Not open for further replies.

BlueBrand

MIS
Sep 25, 2001
29
0
0
CA
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?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top