Question
value list
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
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
