Sub hesapla()
Dim db As Database
Dim rst As Recordset
Set db = CurrentDb
toplam = 0
Set rst = db.OpenRecordset("giriş")
Do Until rst.EOF
If rst.Fields(2).Value = "teknosa" Then
toplam = toplam + (rst.Fields(3).Value * rst.Fields(4).Value)
End If
rst.MoveNext
Loop
MsgBox toplam
End Sub
Yorumlar
Yorum Gönder