In the following example I assign names of fields from a form to a list and then loop through the list to obtain and print the values.<br><br><br><cfset stringVars="frm_coy,frm_address,frm_inst,frm_link"><br><cfoutput><br><cfloop index="lfld" list="#VARIABLES.stringVars #" delimiters=","><br> <cfset tVal=#evaluate(lfld)#><br> #lFld# = #VARIABLES.tVal#<br></cfloop><br></cfoutput><br><br>HTH