I have a this code
Set rst = db.OpenRecordse t("select raad from blub where arnr = " & arnr & " ", dbOpenDynaset)
eid = rst!raad - a(is a number)
If eid <= 0 Then
MsgBox "Het raad: " & rst!raad
Else
Me.Total.Value =
Me.verprice.Val ue * Me.a.Value
End If
When I can the value of total, it changes for every row. I want only the current record of total to be effected. I looked here around and on google. I did found few great things but I couldn't get it working for me after like 4 hours of search and trail. Hopefully you kind people can save me! Thank you
Set rst = db.OpenRecordse t("select raad from blub where arnr = " & arnr & " ", dbOpenDynaset)
eid = rst!raad - a(is a number)
If eid <= 0 Then
MsgBox "Het raad: " & rst!raad
Else
Me.Total.Value =
Me.verprice.Val ue * Me.a.Value
End If
When I can the value of total, it changes for every row. I want only the current record of total to be effected. I looked here around and on google. I did found few great things but I couldn't get it working for me after like 4 hours of search and trail. Hopefully you kind people can save me! Thank you
Comment