I have the following table, with the cfoutput, query, and
group. The displayed output is below.
<center>
<table border="1" width="760">
<cfoutput query="qry" group="user_employee_number">
<tr>
<td valign="top"
colspan="2"><b>#ucase(user_employee_number)#</b></td>
</tr>
<cfoutput>
<tr>
<td><a
href="next_page.cfm?ref_no=#qry.ref_no#&line_item=#qry.line_item#">Reference
No:#qry.ref_no#</a></td>
<td>line item #qry.line_item#</td>
</tr>
</cfoutput>
</cfoutput>
</table>
</center>
123456
Reference No: 99999 line item 1
Reference No: 99999 line item 2
345678
Reference No:00001 line item 1
912311
Reference No:10934 line item 1
Reference No:10934 line item 2
Reference No:10934 line item 3
What do I need to change so that the Reference No only shows
up once, instead of occuring the same amount of times of the line
item ?