gojets1721
Registered User.
- Local time
- Yesterday, 21:25
- Joined
- Jun 11, 2019
- Messages
- 430
I've been using this guide to output a column of data in a table to a single comma separated string in a form's field. It works in general but I can't get the where condition to work.
Here's what I put in the control source of the field in the form:
I'm trying to use the wherecondition to filter the string down to the matching complaint numbers in the tblEmployees and the form's table. But I'm just getting a #Name error when using the above
Any suggestions on what to change?
Here's what I put in the control source of the field in the form:
Code:
=FieldAsSeparatedString("EmployeeName","tblEmployees","[ComplaintNumber] =" & [Me].[ComplaintNumber] & "")
I'm trying to use the wherecondition to filter the string down to the matching complaint numbers in the tblEmployees and the form's table. But I'm just getting a #Name error when using the above
Any suggestions on what to change?