Ciao.

Sto provando a fare la somma dei valori contenuti nella colonna "prezzo" del mio dbase access e scrivo così:
codice:
SQL = "select SUM (finale) as totale from catalogo where prezzo"
set RECDown = GetConnection.Execute(SQL) 

dim intTotale 
intTotale = RECDown("totale") 

if RECDown.eof then 
response.write "ko"
else
While Not RECDown.EOF

response.Write (FormatNumber((intTotale), 2))
ma restistuisce:
Error Type:
Microsoft JET Database Engine (0x80040E10)
No value given for one or more required parameters.