Unable to out value of variable using Evaluate...
<cfcontent type="application/vnd.ms-excel">
<cfset count = 0>
<cfloop index="Add" from="1" to="1" step="1">
<cfset count = count + 1>
<cfset Number = 'Form.inj_#count#'>
<cfset num = #Number#>
<cfset tick = 'Form.tick_#count#'>
<cfset sk = #tick#>
<cfset Quality = 'Form.quality_#count#'>
<cfset qa = #Quality#>
<cfset description = 'Form.description_#count#'>
<cfset des = #description#>
<cfoutput>
<table border="1" width="100%">
<tr>
<td align="center">#count#</td>
<td align="center">#Evaluate('sk')#</td>
<td align="center">#Evaluate('qa')#</td>
<td align="center">#Evaluate('des')#</td>
</tr>
</table>
</cfoutput>
</cfloop>
