HI All
I have master form "Logistics" and a filtered continuos subform "LogisticsDetail", i am trying to generate on button click to check that the filtered records required are populated.
code is as follows at present:
If IsNull(Forms!Logistics!LogisticsDetail!Shipmentqty.Value) Then
MsgBox "Please enter frieght qty below"
ElseIf IsNull(Forms!Logistics!LogisticsDetail!Boxqty.Value) Then
MsgBox "Please enter box qty below"
but if say 4 records are filtered in the subform and 3 out of the 4 have values in boxqty it will not pick up that one is missing, how do check that all the filtered records have a value present??
if i leave all blank it works fine...
Appreciate anyones help?
THanks
Ali
I have master form "Logistics" and a filtered continuos subform "LogisticsDetail", i am trying to generate on button click to check that the filtered records required are populated.
code is as follows at present:
If IsNull(Forms!Logistics!LogisticsDetail!Shipmentqty.Value) Then
MsgBox "Please enter frieght qty below"
ElseIf IsNull(Forms!Logistics!LogisticsDetail!Boxqty.Value) Then
MsgBox "Please enter box qty below"
but if say 4 records are filtered in the subform and 3 out of the 4 have values in boxqty it will not pick up that one is missing, how do check that all the filtered records have a value present??
if i leave all blank it works fine...
Appreciate anyones help?
THanks
Ali