"Thanks for taking the time to help me in Advance"
I would like to Validate something like this.
FieldA >0 Or FieldB Is Not Null
In my mind this would return a validation error if
FieldB is Blank and FieldA is Greater than 0
Note: In FieldA the default data is 0
What I would like to happen is if a user updates the "Quantity" in FieldB with out Selecting the "Defect Type" In FieldA (error)
I just found the below code works for my table properties, but only for one DefectCode1 Field and matching DCodeQy Field.
([DefectCode1] Is Not Null) And ([DCode1Qy]>0)
Now my only problem is I dont know how to include all of my Fields under this one Table Property.
Eaxample:
([DefectCode1] Is Not Null) And ([DCode1Qy]>0)
([DefectCode2] Is Not Null) And ([DCode2Qy]>0)
([DefectCode3] Is Not Null) And ([DCode3Qy]>0)

Thanks
Again!!!!!!!**********
I would like to Validate something like this.
FieldA >0 Or FieldB Is Not Null
In my mind this would return a validation error if
FieldB is Blank and FieldA is Greater than 0
Note: In FieldA the default data is 0
What I would like to happen is if a user updates the "Quantity" in FieldB with out Selecting the "Defect Type" In FieldA (error)
I just found the below code works for my table properties, but only for one DefectCode1 Field and matching DCodeQy Field.
([DefectCode1] Is Not Null) And ([DCode1Qy]>0)
Now my only problem is I dont know how to include all of my Fields under this one Table Property.
Eaxample:
([DefectCode1] Is Not Null) And ([DCode1Qy]>0)
([DefectCode2] Is Not Null) And ([DCode2Qy]>0)
([DefectCode3] Is Not Null) And ([DCode3Qy]>0)

Thanks
Again!!!!!!!**********
Last edited: