I have a query that returns data displayed in table that
looks like this :
Name ID Company count
Joe Smith xx1xx Burger Inc 1
Joe Smith xx1xx McDonalds 5
Bob Jones AA2AA Jets Inc 4
What I would like it to look like is this, display the name
and ID only once :
Name ID Company count
Joe Smith xx1xx Burger Inc. 1
McDonalds 5
Bob Jones AA22A Jets Inc 4
This is the code that I am attempting to use, but it
obviously is incorrect.
<cfoutput query="qryGet_Null" group="buyer_number">
<tr>
<cfoutput>
<td>#buyer_name#</td>
<td>#buyer_number#</td>
</cfoutput>
<td>#supplier_name#</td>
<td align="center">#total_count#</td>
</tr>
</cfoutput>
Where do I have to place the cfoutput tags to make the output
displayed like the sample above ?
Also, if I export to excel, will it export just the way it
is, with one name only, per supplier ?
Thanks