Forum Discussion
Searching Contacts by First Name, Last Name, or a Nickname Using Text Filter Add In
Hi Anonymous,
You could combine the two columns in a new Calculated Table, like this:
- Anonymous7 years agoNot applicable
Anonymous Thanks for the reply. The end goal is to be able to search by a contact's first, last, and/or nickname.
Ex. I have a contact Douglas Johnson. I want to be able to search by Douglas Johnson or Doug Johnson.
- Anonymous7 years agoNot applicable
Anonymous -
Ah, I wasn't familiar with the Text Filter visual - pretty nice!
First you would create the table as mentioned above. Then use that new column in the Search Filter visual.
Hope This Helps
Nathan
- Anonymous7 years agoNot applicable
Actually, scratch the former solution. That won't work, because you would need to create a relationship that wouldn't work. What you can do is add a calculated column to your table. It will concatenate the 2 columns.
SearchColumn = <YourTable>[FullName] & <YourTable>[NickName]
Then you can search on that column.