Hey Olmos,
Something like this will give you the group count.
<cfquery ...
select * from my table
order by myGroup asc
</cfquery>
<cfset groupCount=0>
<cfoutput query="q1" group="myGroup">
<cfset groupCount=groupCount+1>
<cfoutput></cfoutput>
</cfoutput>
<cfoutput>
<table><tr>
<td>(#groupCount#) New Group</td>
</tr></table>
</cfoutput>
Hope this helps,
GJ