> Basically what i need to do is make a Valulist out of
> "QueryName.DynamicPrimaryKey"
> 
> <cfset list = Valuelist(QueryName.ATTRIBUTES.PrimaryKey)>
> 
> ATTRIBUTES.Column is named dynamically and ive used
> Evaluate(ATTRIBUTES.PrimaryKey) numerous times in this 
> template but this one I can't seem to get since what I 
> really need is Evaluate(Evaluate(ATTRIBUTES.PrimaryKey))

If "QueryName" above is the actual name of the query (as opposed to a
variable containing that name), you should be able to do this:

<cfset list = Evaluate("ValueList(QueryName.#Attributes.PrimaryKey#)")>

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to