Good morning,
I am not an experienced user and have a basic question. I have a main form named Test Cases which has a subform called TestSteps. The subform TestSteps has a field named StepDescription . I want the user to be able to click on the field StepDescription and open another form UnitTestCase. I want Unit Test Case to open where StepDescription on TestSteps matches TestCaseID on UnitTestCase. Both fields are text fields.
Here is the code I am using
I am getting a compile error that StepDescription Compile Error Method or Data Member not found.
Can anyone assist? I really appreciate the help!
I am not an experienced user and have a basic question. I have a main form named Test Cases which has a subform called TestSteps. The subform TestSteps has a field named StepDescription . I want the user to be able to click on the field StepDescription and open another form UnitTestCase. I want Unit Test Case to open where StepDescription on TestSteps matches TestCaseID on UnitTestCase. Both fields are text fields.
Here is the code I am using
Code:
Const cstrForm As String = "UnitTestCase" DoCmd.OpenForm cstrForm, WhereCondition:="[TestCaseID]=" & Me.StepDescription End Sub
Can anyone assist? I really appreciate the help!
Comment