L
Levans digital
I have a Form. On its close event a update query is run if a field has a
value more than 0 (zero) Example below:
If Me.WorkOrderID > 0 Then
stDocName = "QryRequisitionDetailstoParts"
DoCmd.OpenQuery stDocName, acNormal, acEdit
Else
End If
However what code must I insert to have the query not run if the value in
the field is null or is 0
help
value more than 0 (zero) Example below:
If Me.WorkOrderID > 0 Then
stDocName = "QryRequisitionDetailstoParts"
DoCmd.OpenQuery stDocName, acNormal, acEdit
Else
End If
However what code must I insert to have the query not run if the value in
the field is null or is 0
help