Say you can recognise the row on which the click occurs via the column LineItem, and say the column you want to zero is called Qty
in the onclick event of the control bound to Qty, something like:
With Parent.SubFormControlName.Form.RecordsetClone
If .RecordCount > 0 Then
.MoveFirst
Do Until .EOF
If !LineItem > Me.LineItem
!Qty = 0
End If
.MoveNext
Loop
End if
End With
should do the trick
Regards
Ken Reay
Freelance Solutions Developer
Boldon Information Systems Ltd
Website needs upgrading, but for now -
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.