boredguy2000
Programmer
Hello all.
I am trying to write data from 2 form fields to a table based on whether this is the first time or subsequent time it has been written.
Something like:
Private Sub Capture_Status_Change_Click()
If Table![workingtable].[LMStatus1] Is Null Then
Let Table![workingtable].[LMStatus1] = Me.[Loss Mit Status]
Let Table![workingtable].[ApprovalDate1] = Me.[Approval Date]
Else
Let Table![workingtable].[LMStatus2] = Me.[Loss Mit Status]
Let Table![workingtable].[ApprovalDate2] = Me.[Approval Date]
End If
(I get an error w/ this code saying "Object Required")
I am not sure if my point makes sense but will surely be checking every other second and will clarify if needed. Thanks guys!!!
I am trying to write data from 2 form fields to a table based on whether this is the first time or subsequent time it has been written.
Something like:
Private Sub Capture_Status_Change_Click()
If Table![workingtable].[LMStatus1] Is Null Then
Let Table![workingtable].[LMStatus1] = Me.[Loss Mit Status]
Let Table![workingtable].[ApprovalDate1] = Me.[Approval Date]
Else
Let Table![workingtable].[LMStatus2] = Me.[Loss Mit Status]
Let Table![workingtable].[ApprovalDate2] = Me.[Approval Date]
End If
(I get an error w/ this code saying "Object Required")
I am not sure if my point makes sense but will surely be checking every other second and will clarify if needed. Thanks guys!!!