Good Morning,
The process I have is as follows:
-
[*]Goal
[*]Outcome
This is a 1-2 many relationship based on member.
Each goal MUST have an assigned outcome before closing the case. However, while the case is still open, there can/will be many goals w/o outcomes as well as many goals w/outcomes. If the goal doesn’t have an assigned outcome yet, the user can change the goal, otherwise, the user should get a message informing them the goal has an assigned outcome and can’t be changed.
My forms controls consist of the following:
-
[*]Goal
[*]Outcome
[*]Option Group (Replace and Remove)
My problem is for all the goals that don’t have an assigned outcome I need the option buttons within the option group where outcome is null visible = True and for all the goals that have an assigned outcome the option button within the option group visible=false.
So, let’s say I have 5 goals, 3 with assigned outcomes and 2 w/o assigned outcomes. I need the option buttons visible=false for 3 records and option buttons visible=true for 2 records.
I thought I could apply a loop statement to loop through the recordset, that didn’t work. I’ve tried a FOR EACH statement to loop through the controls and that didn’t work.
Can someone please point me in the right direcetion?