I have a form bound to the following query:
SELECT P.*, A.* FROM tblPatientInformation AS P, tblAdmissions AS A WHERE P.PatientID = A.PatientID
Both tables have a field named FundingSource. When I write the following assignment:
Me.P.FundingSource = Me.A.FundingSource
I get the following Compile error:
"Method or data member not found"
SELECT P.*, A.* FROM tblPatientInformation AS P, tblAdmissions AS A WHERE P.PatientID = A.PatientID
Both tables have a field named FundingSource. When I write the following assignment:
Me.P.FundingSource = Me.A.FundingSource
I get the following Compile error:
"Method or data member not found"