Skip to main content
Inspiring
June 12, 2008
Question

value list

  • June 12, 2008
  • 2 replies
  • 306 views
I have the code to pass to the value of the list<cfset OrgCodeList_assign = ValueList(orgAccess.OrgCode)>
and this list gave me AA,AB,AC. I passed those value to the next page and I got AA,AB,AC. I need these value on the next page for my query but I don't know how to seperate these in to
('AA', 'AB', 'AC')

<cfquery
select .....
from....
where orgcode in ('AA', 'AB', 'AC')

Thanks
This topic has been closed for replies.

2 replies

Inspiring
June 12, 2008
cfqueryparam list="yes"
Inspiring
June 12, 2008
listQualify()