oh yeah sorry bout that....just didn't want to be presumptious and post code up straight away...thanks
here are the queries, i've included three of them there is about 15 in total, all similar to the ones below.
'2020 Strategies
DIM mySQL, objRS
mySQL = "SELECT Count(*) AS intTotal FROM VivasLives WHERE VivasLives.group_name='2020 STRATEGIES';"
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open mySQL, objConn
'Carat
DIM mySQL1, objRS1
mySQL1 = "SELECT Count(*) AS intTotal1 FROM VivasLives WHERE VivasLives.group_name='Carat Ireland' AND leaving_date is NULL;"
Set objRS1 = Server.CreateObject("ADODB.Recordset")
objRS1.Open mySQL1, objConn
'Catalyst
DIM mySQL2, objRS2
mySQL2 = "SELECT Count(*) AS intTotal2 FROM VivasLives WHERE VivasLives.group_name='CATALYST DNA' AND leaving_date is NULL;"
Set objRS2 = Server.CreateObject("ADODB.Recordset")
objRS2.Open mySQL2, objConn
here is where i print out the values..in my HTML page
<tr>
<td class="main"><strong class="private">2020 Strategies</strong></td>
<td align="center" class="main"><% ' Display result
Response.Write objRS("intTotal")%></td>
</tr>
<tr>
<td class="main"><strong class="private">Carat</strong></td>
<td align="center" class="main"><%' Display result
Response.Write objRS1("intTotal1")%></td>
</tr>
<tr>
<td class="main"><strong class="private">Catalyst</strong></td>
<td align="center" class="main"><%' Display result
Response.Write objRS2("intTotal2")%></td>
</tr>