Para quien lo necesite aqui el codigo:
Código PHP:
<?php $query_total="SELECT SUM( `precio` ) as total FROM `activo` ";
$result=mysql_query($query_total) or die(mysql_error());
$valores = mysql_fetch_assoc($result);
echo "<strong> VALOR TOTAL EN ACTIVOS </strong> = ".$valores["total"]." <strong>Bs.F.</strong>";
?>
Mis creditos a GatorV por su ayuda!