Is there a way to filter customers using multiple tags?

jmstrick
Excursionist
23 0 6

I need to create customer filters using multiple tags so I can send targeting emails to certain groups of my customers.  But, it looks like I can only select a single tag to filter.  Is there a way to select multiple tags when filtering customers?

Replies 3 (3)

melcable
Shopify Partner
10 0 2

I'm needing the same thing...did you  find a solution?

dappernotes
Tourist
8 0 7

Seconded this. Managing customers segments by tags is extremely important for sending emails. Anyone figure out a solution for selecting multiple tags?

dappernotes
Tourist
8 0 7

Based on this answer from a related topic, I discovered that you can filter customers with multiple tags by using the following operators:

AND		//for when all tags need to match)
OR		//(for when any tag exists)
-			//(minus sign, to exclude a matching tag)

 

Instead of using Shopify's "Tagged With" dropdown, type your query into the main search field on the customers page.

customers-search-field.png

So for example if you want to show customers that have tag_1 and not tag_2, you'll type the following (the minus means NOT):

tag_1 -tag_2

Or to show customers who have both tag_1 and tag_2, type:

tag_1 AND tag_2

 

You can combine any of the operators to filter for what you need. Hope this helps.