I have a report that is based off of a query. In the query, I prompt for employee's name [EEName]. The EEName may be in several places, so I added a field that combines all of the several places in one field. Then I put in a prompt that asks for the employee's last name.
EENameAll: [Field1] & [Field2] & [Field3]
Like "*" & [Enter the last name to search by: ] & "*"
What I want to do now is display whatever the user typed in. I used ="Employee Name " & ([EENameAll]), but that gives me all of the names in a string.
In other words, when prompted for last name and I type in Jones, I want Jones to appear on the report.
How do I do this?
Thanks in advance.
EENameAll: [Field1] & [Field2] & [Field3]
Like "*" & [Enter the last name to search by: ] & "*"
What I want to do now is display whatever the user typed in. I used ="Employee Name " & ([EENameAll]), but that gives me all of the names in a string.
In other words, when prompted for last name and I type in Jones, I want Jones to appear on the report.
How do I do this?
Thanks in advance.