aqui hay otra opcion
Código PHP:
'limpias la variable
SubTotal = 0
For i = 1 To ListadoDetalleFactura.Rows - 1
'el textmatrix sirve para ubicarte en fila y columna respectivamente
If ListadoDetalleFactura.TextMatrix(i, 5) = "" Then
Else
'si el grid posee algo que lo sume
SubTotal = SubTotal + ListadoDetalleFactura.TextMatrix(i, 5)
End If
Next i
' msgbox subtotal
espero te sirva....