I have a form that accesses a lookup table where it needs to
- find the lines in the SQL that match First number (a TASK radio button);
- find the lines that also only match the Second number (a second choice radio button);
- then fill all the fields in the table.
I have this working by having a hidden singleline field that gathers both the First radio button choice and then the Second radio button choices (different ones are unhidden depending on the choice in the first radio button). It has this formula in it, which grabs both radio button choices: =ReviewHazardsFLHA1&ReviewHazardsFLHA2&ReviewHazardsFLHA3
The problem starts when the user changes the first radio button and begins looking at some other choices. Basically, the singleline field has already filled with the variables from the two radio buttons already picked and now, instead of clearing out and redoing the formula, it ends up adding to the formula.
This is the singleline filled in after the first choices:
This is the singleline filled in after I begin alternate choices:
I need the FLHA2-T2 cleared out before it brings in the FLHA1-T3. Can anyone help me with a solution?