Greetings Forum-goers.
I'm new to the forums and new to using ACCESS in general. I've gotten good at snipping and reformatting Excel formulas to get what I want, but I'm finding Access is a whole new beast, and I'm not nearly well acquainted enough with VBA to just slap things together.
I've been attempting to created a database, forms, and reports based on a simple Excel system I've been using and I've run into the first of many roadblocks I am sure I won't be able to solve, so here we be.
I'm using Check Boxes to indicate whether or not a certain service/testing is required. I used the formula =IIf([CLAUSES] Like "*PH*",True,False) to cause the check box to be checked if the value "PH" is in the CLAUSES field. This worked fine in the CONTROL SOURCE, however I cannot figure out how to reverse that so that if the check box is checked in the form, "PH" will be entered into the table when entering new records. I've searched to no avail, and though I'm sure I ran across something that was close to the answer I wasn't able to make it work. Having what I have in the CONTROL SOURCE causes the checkbox to be locked in new records, since it's dependent upon the text in the field.
A few important notes: The CLAUSES field in question will have multiple letter codes (PH for physical testing, DI for dimensional verififcation, RT for X-ray, etc.. I was separating these using commas, though that isn't critical... I've created multiple checkboxes, one for each required test/service, which should each check the CLAUSES field for its letter code, or enter its specific code into the field for new records... the checking part works fine as mentioned above, but the reverse of it is a no go so far.)
Thank you in advance for any help you may be able to provide.