I need to apply some validation but really don’t know where to start.
I have a continuous subform, with each record comprising some text (txtType) and two check boxes (chkPresent and chkExtent). The check boxes are used as follows:
The first (chkPresent ) indicates the observed occurance for the object described in the text field. The second (chkExtent) indicates the objects extent.
For each record on the main form, there will be say, 10 entries on the subform (created by an append query).
Any, all or none of the records could have chkPresent set to True (by default they will be False)
This is the validation I need.
1) chkExtent can only be set to true if chkPresent is True (maybe it should be until this condition is met)
2) A MAXIMUM of 3 records could have chkExtent set to True
To keeps things tidy I suppose if an instance of chkPresent gets unchecked, then chkExtent should be set to false and disabled
The idea is here, just not the know-how